summaryrefslogtreecommitdiff
path: root/jpeg
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-01-04 11:43:51 +0000
committerRobin Watts <robin.watts@artifex.com>2016-01-04 12:58:54 +0000
commit6e628ac44909dd2a0fc738eaa491d92a6e4c1db0 (patch)
treecbc850b055dbbb3814a80ce59220a385b9a7330c /jpeg
parent95a16466806c9f8c4f783fd6ebfb0095b9227f56 (diff)
downloadghostpdl-6e628ac44909dd2a0fc738eaa491d92a6e4c1db0.tar.gz
Squash Warnings: Simple unused variable warnings.
Diffstat (limited to 'jpeg')
-rw-r--r--jpeg/jcsample.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/jpeg/jcsample.c b/jpeg/jcsample.c
index 4d36f85f3..7b0e73120 100644
--- a/jpeg/jcsample.c
+++ b/jpeg/jcsample.c
@@ -541,5 +541,7 @@ jinit_downsampler (j_compress_ptr cinfo)
#ifdef INPUT_SMOOTHING_SUPPORTED
if (cinfo->smoothing_factor && !smoothok)
TRACEMS(cinfo, 0, JTRC_SMOOTH_NOTIMPL);
+#else
+ smoothok = smoothok; /* Stop unused var warnings */
#endif
}