From 87e6164e142d915cd18cc61f8fb18e2b88430da6 Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 26 Sep 2008 11:29:47 +0000 Subject: [PATCH] fixed compiler warning --- lib/pdf/BitmapOutputDev.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pdf/BitmapOutputDev.cc b/lib/pdf/BitmapOutputDev.cc index d0129d2..43fb89a 100644 --- a/lib/pdf/BitmapOutputDev.cc +++ b/lib/pdf/BitmapOutputDev.cc @@ -470,7 +470,7 @@ GBool BitmapOutputDev::intersection() unsigned long long int c=0; assert(sizeof(unsigned long long int)==8); { - if((polypixels&7) || (textpixels&7)) { + if(((int)polypixels&7) || ((int)textpixels&7)) { msg(" Non-optimal alignment"); } int l2 = len; -- 1.7.10.4