summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-11-30 15:14:44 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-30 15:23:39 +0100
commitdd32a305bdee54eff9b3fd1f5592f100b8a8fb83 (patch)
treeaf288a840c453c741f1110b43013ad76a32d8819 /libavcodec
parent4710993800edcea110087b31330d1062d1e56b0e (diff)
wmall: fix return type of dump_int_buffer()
Found-by: Dominique Leuenberger Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/wmalosslessdec.c2
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;