diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-01-22 20:33:37 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-01-22 20:33:37 +0100 |
| commit | 74c87465950d7373fae090a575332fa66d9b7047 (patch) | |
| tree | eae4691db07b42eab1e17be020e022c60a6d9f3a /apps/plugins | |
| parent | 9f4ee795425624ed56beb6c8133d5532b7344b7b (diff) | |
| download | rockbox-74c87465950d7373fae090a575332fa66d9b7047.zip rockbox-74c87465950d7373fae090a575332fa66d9b7047.tar.gz rockbox-74c87465950d7373fae090a575332fa66d9b7047.tar.bz2 rockbox-74c87465950d7373fae090a575332fa66d9b7047.tar.xz | |
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/plugins')
| -rw-r--r-- | apps/plugins/doom/z_zone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/z_zone.c b/apps/plugins/doom/z_zone.c index adf17a7..df00d6a 100644 --- a/apps/plugins/doom/z_zone.c +++ b/apps/plugins/doom/z_zone.c @@ -248,7 +248,7 @@ void Z_Init(void) zonebase_size=size; - printf("Z_Init: Allocated %uldKb zone memory\n", (long unsigned)(size >> 10)); + printf("Z_Init: Allocated %luKb zone memory\n", (long unsigned)(size >> 10)); // Align on cache boundary |