summaryrefslogtreecommitdiffstats
path: root/src/sdl_mixer-test.c
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2011-03-27 13:49:26 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2011-03-27 13:49:26 (GMT)
commit039b291ac0508c881d63303c4b22eebbd55e7e3d (patch)
treeb1e29600f8e82b719111b28a3357063012a8d69a /src/sdl_mixer-test.c
parent80ea9c0737c306adc432e97c8784bf55910c0d4a (diff)
downloadmxe-039b291ac0508c881d63303c4b22eebbd55e7e3d.zip
mxe-039b291ac0508c881d63303c4b22eebbd55e7e3d.tar.gz
mxe-039b291ac0508c881d63303c4b22eebbd55e7e3d.tar.bz2
fix compiler errors instead of suppressing them
Diffstat (limited to 'src/sdl_mixer-test.c')
-rw-r--r--src/sdl_mixer-test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sdl_mixer-test.c b/src/sdl_mixer-test.c
index 56305fa..02b9306 100644
--- a/src/sdl_mixer-test.c
+++ b/src/sdl_mixer-test.c
@@ -11,6 +11,7 @@ int main(int argc, char *argv[])
(void)argv;
initted = Mix_Init(MIX_INIT_FLAC | MIX_INIT_OGG | MIX_INIT_MOD);
+ (void)initted;
Mix_Quit();
return 0;
}