wmall: fix return type of dump_int_buffer()

Found-by: Dominique Leuenberger
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-11-30 15:14:44 +01:00
parent 4710993800
commit dd32a305bd
1 changed files with 1 additions and 1 deletions

View File

@ -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;