diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-03 11:40:59 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-03 11:40:59 +0000 |
| commit | b330c104924b377f60846cdcc87659607d3a848c (patch) | |
| tree | 17f5df2dbf0b3d9f5ff280242e24b05b519053d4 /tests/unit/testempty0.c | |
| parent | 25255c4ed1cb1974857189a2a5c67f878c923cc3 (diff) | |
[trunk] remove some simple warnings about unused params
Diffstat (limited to 'tests/unit/testempty0.c')
| -rw-r--r-- | tests/unit/testempty0.c | 6 |
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; +} |
