summaryrefslogtreecommitdiff
path: root/apps/codecs/wma.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-01-22 20:33:37 +0100
committerThomas Martitz <kugel@rockbox.org>2012-01-22 20:33:37 +0100
commit74c87465950d7373fae090a575332fa66d9b7047 (patch)
treeeae4691db07b42eab1e17be020e022c60a6d9f3a /apps/codecs/wma.c
parent9f4ee795425624ed56beb6c8133d5532b7344b7b (diff)
downloadrockbox-74c87465950d7373fae090a575332fa66d9b7047.tar.gz
rockbox-74c87465950d7373fae090a575332fa66d9b7047.zip
Don't filter out -O for sims.
It's not useful as it means we test code at a different -O level than we run it at. Fixes build errors caused by gcc 4.3. Fix some warnings the change would introduce as well. Change-Id: Id9ff31dc08694b0bfc5272f5e690c41f7918ed22
Diffstat (limited to 'apps/codecs/wma.c')
-rw-r--r--apps/codecs/wma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/wma.c b/apps/codecs/wma.c
index 8986531744..361fee6175 100644
--- a/apps/codecs/wma.c
+++ b/apps/codecs/wma.c
@@ -46,7 +46,7 @@ enum codec_status codec_run(void)
46 asf_waveformatex_t wfx; 46 asf_waveformatex_t wfx;
47 size_t resume_offset; 47 size_t resume_offset;
48 int i; 48 int i;
49 int wmares; 49 int wmares = 0;
50 int res = 0; 50 int res = 0;
51 uint8_t* audiobuf; 51 uint8_t* audiobuf;
52 int audiobufsize; 52 int audiobufsize;