mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
4710993800
commit
dd32a305bd
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue