diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-22 09:20:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-22 09:20:31 +0200 |
commit | 6e2bc6403be0f9cf4cf324f870623c87f45cfa93 (patch) | |
tree | 4673869f16b661095d6a30b3d38ab8cdcd52051e /vcl | |
parent | 2a65f0e1857fccd4427eed733a49d8a4c2f67856 (diff) |
-Werror=unused-parameter
Change-Id: I01995091350ed4a4edefa13ca6946d23062112a1
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/jpeg/transupp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/filter/jpeg/transupp.c b/vcl/source/filter/jpeg/transupp.c index a1c341668541..54472ff25f8d 100644 --- a/vcl/source/filter/jpeg/transupp.c +++ b/vcl/source/filter/jpeg/transupp.c @@ -1594,6 +1594,8 @@ jcopy_markers_setup (j_decompress_ptr srcinfo, JCOPY_OPTION option) for (m = 0; m < 16; m++) jpeg_save_markers(srcinfo, JPEG_APP0 + m, 0xFFFF); } +#else + (void) srcinfo; (void) option; #endif /* SAVE_MARKERS_SUPPORTED */ } |