summaryrefslogtreecommitdiff
path: root/apps/codecs/libFLAC/bitbuffer.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-02-16 20:13:12 +0000
committerDave Chapman <dave@dchapman.com>2005-02-16 20:13:12 +0000
commitf729fce058d863b6df15ea4ca22e033820b783a0 (patch)
tree2ef91e47b8631b8e4ad6d6a765b15a294b4adde3 /apps/codecs/libFLAC/bitbuffer.c
parent23b3a45acd70239479158afa1c994f0fd32793cd (diff)
downloadrockbox-f729fce058d863b6df15ea4ca22e033820b783a0.tar.gz
rockbox-f729fce058d863b6df15ea4ca22e033820b783a0.zip
Fix some compiler warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5986 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libFLAC/bitbuffer.c')
-rw-r--r--apps/codecs/libFLAC/bitbuffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libFLAC/bitbuffer.c b/apps/codecs/libFLAC/bitbuffer.c
index a7332008ab..552a326ec2 100644
--- a/apps/codecs/libFLAC/bitbuffer.c
+++ b/apps/codecs/libFLAC/bitbuffer.c
@@ -317,7 +317,7 @@ static FLAC__bool bitbuffer_read_from_client_(FLAC__BitBuffer *bb, FLAC__bool (*
317 * 317 *
318 ***********************************************************************/ 318 ***********************************************************************/
319 319
320FLAC__BitBuffer *FLAC__bitbuffer_new() 320FLAC__BitBuffer *FLAC__bitbuffer_new(void)
321{ 321{
322 FLAC__BitBuffer *bb = (FLAC__BitBuffer*)calloc(1, sizeof(FLAC__BitBuffer)); 322 FLAC__BitBuffer *bb = (FLAC__BitBuffer*)calloc(1, sizeof(FLAC__BitBuffer));
323 323
@@ -1983,7 +1983,7 @@ FLAC__bool FLAC__bitbuffer_read_byte_block_aligned_no_crc(FLAC__BitBuffer *bb, F
1983 return true; 1983 return true;
1984} 1984}
1985 1985
1986FLaC__INLINE FLAC__bool FLAC__bitbuffer_read_unary_unsigned(FLAC__BitBuffer *bb, unsigned *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data) 1986FLaC__INLINE FLAC__bool FLAC__bitbuffer_read_unary_unsigned(FLAC__BitBuffer *bb, FLAC__uint32 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data)
1987#ifdef FLAC__NO_MANUAL_INLINING 1987#ifdef FLAC__NO_MANUAL_INLINING
1988{ 1988{
1989 unsigned bit, val_ = 0; 1989 unsigned bit, val_ = 0;