summaryrefslogtreecommitdiff
path: root/fitz/filt_faxd.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-01 18:49:22 +0200
committerTor Andersson <tor@ghostscript.com>2010-07-01 18:49:22 +0200
commit74838f16f6c838251af1e8b81a6064a9cac50464 (patch)
tree0f4bbda6c9266c3df8071cd37cb258510adfd6dd /fitz/filt_faxd.c
parent7f940ad522ceb63bc5d54923a1635773ca592b9b (diff)
downloadmupdf-74838f16f6c838251af1e8b81a6064a9cac50464.tar.xz
Remove silly warnings from MSVC.
Diffstat (limited to 'fitz/filt_faxd.c')
-rw-r--r--fitz/filt_faxd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/filt_faxd.c b/fitz/filt_faxd.c
index 61238819..c31a7ea2 100644
--- a/fitz/filt_faxd.c
+++ b/fitz/filt_faxd.c
@@ -538,7 +538,7 @@ eol:
else {
unsigned char * restrict d = out->wp;
unsigned char * restrict s = fax->dst;
- unsigned w = fax->stride;
+ int w = fax->stride;
for (i = 0; i < w; i++)
*d++ = *s++ ^ 0xff;
}