diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-30 15:14:44 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-30 15:23:39 +0100 |
commit | dd32a305bdee54eff9b3fd1f5592f100b8a8fb83 (patch) | |
tree | af288a840c453c741f1110b43013ad76a32d8819 | |
parent | 4710993800edcea110087b31330d1062d1e56b0e (diff) | |
download | ffmpeg-dd32a305bdee54eff9b3fd1f5592f100b8a8fb83.tar.gz |
wmall: fix return type of dump_int_buffer()
Found-by: Dominique Leuenberger
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/wmalosslessdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 9b9e7975ba..514cd0758c 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -308,7 +308,7 @@ static void av_cold dump_context(WmallDecodeCtx *s) PRINT("num channels", s->num_channels); } -static int dump_int_buffer(int *buffer, int length, int delimiter) +static void dump_int_buffer(int *buffer, int length, int delimiter) { int i; |