summaryrefslogtreecommitdiff
path: root/source/fitz/pixmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/pixmap.c')
-rw-r--r--source/fitz/pixmap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/fitz/pixmap.c b/source/fitz/pixmap.c
index 6c6e6e53..61c91e2a 100644
--- a/source/fitz/pixmap.c
+++ b/source/fitz/pixmap.c
@@ -1332,8 +1332,11 @@ fz_subsample_pixmap_ARM(unsigned char *ptr, int w, int h, int f, int factor,
void
fz_subsample_pixmap(fz_context *ctx, fz_pixmap *tile, int factor)
{
- int dst_w, dst_h, w, h, fwd, fwd2, fwd3, back, back2, x, y, n, xx, yy, nn, f;
+ int dst_w, dst_h, w, h, fwd, fwd2, fwd3, back, back2, n, f;
unsigned char *s, *d;
+#ifndef ARCH_ARM
+ int x, y, xx, yy, nn;
+#endif
if (!tile)
return;