aboutsummaryrefslogtreecommitdiffstats
path: root/Tremolo/bitwise.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tremolo/bitwise.c')
-rw-r--r--Tremolo/bitwise.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tremolo/bitwise.c b/Tremolo/bitwise.c
index 3f1be7a..2182641 100644
--- a/Tremolo/bitwise.c
+++ b/Tremolo/bitwise.c
@@ -214,7 +214,7 @@ void oggpack_readinit(oggpack_buffer *b,ogg_reference *r){
/* Read in bits without advancing the bitptr; bits <= 32 */
long oggpack_look(oggpack_buffer *b,int bits){
unsigned long m=mask[bits];
- unsigned long ret;
+ unsigned long ret = 0;
int BITS = bits;
bits+=b->headbit;