git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a4e408
)
fixed compiler warning
author
kramm
<kramm>
Fri, 26 Sep 2008 11:29:47 +0000
(11:29 +0000)
committer
kramm
<kramm>
Fri, 26 Sep 2008 11:29:47 +0000
(11:29 +0000)
lib/pdf/BitmapOutputDev.cc
patch
|
blob
|
history
diff --git
a/lib/pdf/BitmapOutputDev.cc
b/lib/pdf/BitmapOutputDev.cc
index
d0129d2
..
43fb89a
100644
(file)
--- 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("<warning> Non-optimal alignment");
}
int l2 = len;