diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2017-06-17 14:10:15 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2017-06-17 14:10:15 +0200 |
| commit | 5f596cb2833d5ea7a4d04d22af551731bd770f05 (patch) | |
| tree | ad488c2779787969ab7e1a60a0c6ec4ff38a6655 /src | |
| parent | cc07aec6c7b50090c3f471ca2c68d0ffa8aa4ff1 (diff) | |
Fix warning about unused arguments
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/jp2/opj_decompress.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/jp2/opj_decompress.c b/src/bin/jp2/opj_decompress.c index a1e18af7..90dbbfcc 100644 --- a/src/bin/jp2/opj_decompress.c +++ b/src/bin/jp2/opj_decompress.c @@ -987,6 +987,8 @@ sample quiet callback expecting no client object */ static void quiet_callback(const char *msg, void *client_data) { + (void)msg; + (void)client_data; } static void set_default_parameters(opj_decompress_parameters* parameters) |
