summaryrefslogtreecommitdiffstats
path: root/src/jpeg-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/jpeg-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/jpeg-test.c')
-rw-r--r--src/jpeg-test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jpeg-test.c b/src/jpeg-test.c
index 244d9bd..0b8cdb2 100644
--- a/src/jpeg-test.c
+++ b/src/jpeg-test.c
@@ -16,6 +16,9 @@ int main(int argc, char *argv[])
test_boolean = TRUE;
test_int32 = 1;
+ (void)test_boolean;
+ (void)test_int32;
+
jpeg_create_decompress(&cinfo);
jpeg_destroy_decompress(&cinfo);