From 01b99645e8909f40eee0d3ba3ea00416758fcae2 Mon Sep 17 00:00:00 2001 From: Vinod Koul Date: Fri, 2 Feb 2018 23:04:46 +0530 Subject: [PATCH] cplay: make get_codec_iec return void get_codec_iec() doesn't return anything, so make return type as void Signed-off-by: Vinod Koul --- src/utils/cplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/cplay.c b/src/utils/cplay.c index f15c728..98d71a2 100644 --- a/src/utils/cplay.c +++ b/src/utils/cplay.c @@ -304,7 +304,7 @@ void get_codec_mp3(FILE *file, struct compr_config *config, codec->format = 0; } -int get_codec_iec(FILE *file, struct compr_config *config, +void get_codec_iec(FILE *file, struct compr_config *config, struct snd_codec *codec) { codec->id = SND_AUDIOCODEC_IEC61937; -- 2.47.3