From 9b3d8e4193fb5c75678ea8dc49806f498769a541 Mon Sep 17 00:00:00 2001 From: Bruce Beare Date: Fri, 25 Jun 2010 09:07:39 -0700 Subject: Fix compile warnings and errors Orig-Change-Id: I30a9299390cef302a8d3e61b6aa6e38731be1529 Signed-off-by: Bruce Beare --- Tremolo/bitwise.c | 2 +- Tremolo/os_types.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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; diff --git a/Tremolo/os_types.h b/Tremolo/os_types.h index b08d0ce..315227c 100644 --- a/Tremolo/os_types.h +++ b/Tremolo/os_types.h @@ -117,6 +117,7 @@ # include # include "config_types.h" +# include #endif -- cgit v1.1