aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2011-07-08 18:19:01 +0200
committerDavid 'Digit' Turner <digit@google.com>2011-07-08 18:19:01 +0200
commit69a9d313a91bc0cc1ac4aa98d0abdebdc5f9f9a0 (patch)
tree3cffee7550250f2eee8fbeed6f28f633a1787b01
parent9a688754461ebfc91769b5d3c8ba5aba9fe1f376 (diff)
parent9b3d8e4193fb5c75678ea8dc49806f498769a541 (diff)
downloadexternal_tremolo-69a9d313a91bc0cc1ac4aa98d0abdebdc5f9f9a0.zip
external_tremolo-69a9d313a91bc0cc1ac4aa98d0abdebdc5f9f9a0.tar.gz
external_tremolo-69a9d313a91bc0cc1ac4aa98d0abdebdc5f9f9a0.tar.bz2
merge intel x86 patches into gingerbread branch
-rw-r--r--Tremolo/bitwise.c2
-rw-r--r--Tremolo/os_types.h1
2 files changed, 2 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;
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 <sys/types.h>
# include "config_types.h"
+# include <endian.h>
#endif