diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-03-08 23:56:32 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-08 23:56:32 +0000 |
| commit | d748953d51e7f23233a1b4524464ee1c3a5954f3 (patch) | |
| tree | 487ce6d02685036dcf4746d8a5354d94c61ec9c0 /apps/codecs/libFLAC/bitbuffer.c | |
| parent | ca15a18d0bb028594e5504707e1401f26b3ecbf7 (diff) | |
| download | rockbox-d748953d51e7f23233a1b4524464ee1c3a5954f3.zip rockbox-d748953d51e7f23233a1b4524464ee1c3a5954f3.tar.gz rockbox-d748953d51e7f23233a1b4524464ee1c3a5954f3.tar.bz2 rockbox-d748953d51e7f23233a1b4524464ee1c3a5954f3.tar.xz | |
fix proto and function to kill two simulator warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6172 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libFLAC/bitbuffer.c')
| -rw-r--r-- | apps/codecs/libFLAC/bitbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libFLAC/bitbuffer.c b/apps/codecs/libFLAC/bitbuffer.c index fa9786e..5ee8a83 100644 --- a/apps/codecs/libFLAC/bitbuffer.c +++ b/apps/codecs/libFLAC/bitbuffer.c @@ -2143,7 +2143,7 @@ FLAC__bool FLAC__bitbuffer_read_rice_signed(FLAC__BitBuffer *bb, int *val, unsig return true; } -FLAC__bool FLAC__bitbuffer_read_rice_signed_block(FLAC__BitBuffer *bb, int vals[], unsigned nvals, unsigned parameter, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data) +FLAC__bool FLAC__bitbuffer_read_rice_signed_block(FLAC__BitBuffer *bb, FLAC__int32 vals[], unsigned nvals, unsigned parameter, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data) #ifdef FLAC__OLD_MSVC_FLAVOR { const FLAC__blurb *buffer = bb->buffer; |