1
0
Fork 0
forked from len0rd/rockbox

fix warnings

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6420 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-05-07 22:29:59 +00:00
parent c42a1a05bb
commit d23afcd4f4
2 changed files with 4 additions and 0 deletions

View file

@ -35,6 +35,7 @@
/// \file streaminfo.c
/// Implementation of streaminfo reading functions.
#include <string.h>
#include "musepack.h"
#include "internal.h"
@ -63,6 +64,8 @@ mpc_streaminfo_init(mpc_streaminfo * si)
static mpc_int32_t
streaminfo_read_header_sv8(mpc_streaminfo * si, mpc_reader * fp)
{
(void)si;
(void)fp;
return 0;
}