summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2018-03-16 09:06:33 +0000
committerChris Liddell <chris.liddell@artifex.com>2018-03-26 15:40:51 +0100
commitee08b05dd809984df8c686231b8c8f215f5815f9 (patch)
tree12ed62255849610871810c4bba00e7b67c102ad2
parent601e3663d23ddb49af248d539d9c90d9fcec8163 (diff)
downloadghostpdl-ee08b05dd809984df8c686231b8c8f215f5815f9.tar.gz
Squash compiler warning in debug code
-rw-r--r--base/siscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/siscale.c b/base/siscale.c
index 6520ae3b7..1a7082342 100644
--- a/base/siscale.c
+++ b/base/siscale.c
@@ -883,7 +883,7 @@ calculate_dst_contrib(stream_IScale_state * ss, int y)
i >= first_index_mod ?
ss->dst_items[i - first_index_mod].weight :
0);
- if_debug1m('W', ss->memory, " %f", shuffle[i].weight);
+ if_debug1m('W', ss->memory, " %d", shuffle[i].weight);
}
memcpy(ss->dst_items, shuffle, ss->max_support * sizeof(CONTRIB));
ss->dst_next_list.n = ss->max_support;