summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/bitwise.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-02-19 11:58:42 +0000
committerDave Chapman <dave@dchapman.com>2005-02-19 11:58:42 +0000
commit52e43cb6e164627993dc1ef4edc0eeb0bd7f21dd (patch)
tree4f8b08fd31701c49205dbb59daefe6aa61476567 /apps/codecs/Tremor/bitwise.c
parent8243127dc4986bbd3225cb090fcc0c290fb87937 (diff)
downloadrockbox-52e43cb6e164627993dc1ef4edc0eeb0bd7f21dd.tar.gz
rockbox-52e43cb6e164627993dc1ef4edc0eeb0bd7f21dd.zip
Cosmetic changes to remove compiler warnings and compile cleanly under Rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6015 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Tremor/bitwise.c')
-rw-r--r--apps/codecs/Tremor/bitwise.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/Tremor/bitwise.c b/apps/codecs/Tremor/bitwise.c
index ccb82b0f3f..6215b0f5ac 100644
--- a/apps/codecs/Tremor/bitwise.c
+++ b/apps/codecs/Tremor/bitwise.c
@@ -81,7 +81,7 @@ void oggpack_readinit(oggpack_buffer *b,ogg_reference *r){
81/* Read in bits without advancing the bitptr; bits <= 32 */ 81/* Read in bits without advancing the bitptr; bits <= 32 */
82long oggpack_look(oggpack_buffer *b,int bits){ 82long oggpack_look(oggpack_buffer *b,int bits){
83 unsigned long m=mask[bits]; 83 unsigned long m=mask[bits];
84 unsigned long ret; 84 unsigned long ret=0;
85 85
86 bits+=b->headbit; 86 bits+=b->headbit;
87 87
@@ -175,7 +175,7 @@ int oggpack_eop(oggpack_buffer *b){
175/* bits <= 32 */ 175/* bits <= 32 */
176long oggpack_read(oggpack_buffer *b,int bits){ 176long oggpack_read(oggpack_buffer *b,int bits){
177 unsigned long m=mask[bits]; 177 unsigned long m=mask[bits];
178 ogg_uint32_t ret; 178 ogg_uint32_t ret=0;
179 179
180 bits+=b->headbit; 180 bits+=b->headbit;
181 181