summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2014-03-03 11:40:59 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2014-03-03 11:40:59 +0000
commitb330c104924b377f60846cdcc87659607d3a848c (patch)
tree17f5df2dbf0b3d9f5ff280242e24b05b519053d4 /tests
parent25255c4ed1cb1974857189a2a5c67f878c923cc3 (diff)
[trunk] remove some simple warnings about unused params
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/testempty0.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/unit/testempty0.c b/tests/unit/testempty0.c
index 8edd2a6c..09850604 100644
--- a/tests/unit/testempty0.c
+++ b/tests/unit/testempty0.c
@@ -1,3 +1,7 @@
#include "openjpeg.h"
-int main(int argc, char **argv) { return 0; }
+int main(int argc, char **argv) {
+ (void)argc;
+ (void)argv;
+ return 0;
+}