From f34ce792ec48984721016137cb254ed2dc06411c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 7 May 2005 22:15:59 +0000 Subject: fix a couple of warnings, still have numerous for signed <=> unsigned mixed usage git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6418 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libmusepack/mpc_decoder.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/codecs/libmusepack') diff --git a/apps/codecs/libmusepack/mpc_decoder.c b/apps/codecs/libmusepack/mpc_decoder.c index 39dfc1d25a..d58611c23a 100644 --- a/apps/codecs/libmusepack/mpc_decoder.c +++ b/apps/codecs/libmusepack/mpc_decoder.c @@ -35,6 +35,7 @@ /// \file mpc_decoder.c /// Core decoding routines and logic. +#include #include "musepack.h" #include "internal.h" #include "requant.h" @@ -1254,6 +1255,7 @@ helper3(mpc_decoder *d, mpc_uint32_t bitpos, mpc_uint32_t* buffoffs) static mpc_uint32_t get_initial_fpos(mpc_decoder *d, mpc_uint32_t StreamVersion) { mpc_uint32_t fpos = 0; + (void)StreamVersion; switch ( d->StreamVersion ) { // setting position to the beginning of the data-bitstream case 0x04: fpos = 48; break; case 0x05: -- cgit v1.2.3