summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2009-05-06 22:57:12 +0200
committerAlbert Astals Cid <aacid@kde.org>2009-05-06 22:58:18 +0200
commit3806398512e94feee2ffa54e9b1b649ce36f3b76 (patch)
treeaca20ce341901a495637994ab3791a7170e1d2fe
parent72f2044c597fb7f04518d1634cbff33632683360 (diff)
Fix format printing
-rw-r--r--poppler/JBIG2Stream.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/poppler/JBIG2Stream.cc b/poppler/JBIG2Stream.cc
index 33cd4275..16cf1d81 100644
--- a/poppler/JBIG2Stream.cc
+++ b/poppler/JBIG2Stream.cc
@@ -2701,7 +2701,7 @@ inline void JBIG2Stream::mmrAddPixels(int a1, int blackPixels,
int *codingLine, int *a0i, int w) {
if (a1 > codingLine[*a0i]) {
if (a1 > w) {
- error(getPos(), "JBIG2 MMR row is wrong length ({0:d})", a1);
+ error(getPos(), "JBIG2 MMR row is wrong length (%d)", a1);
a1 = w;
}
if ((*a0i & 1) ^ blackPixels) {
@@ -2715,7 +2715,7 @@ inline void JBIG2Stream::mmrAddPixelsNeg(int a1, int blackPixels,
int *codingLine, int *a0i, int w) {
if (a1 > codingLine[*a0i]) {
if (a1 > w) {
- error(getPos(), "JBIG2 MMR row is wrong length ({0:d})", a1);
+ error(getPos(), "JBIG2 MMR row is wrong length (%d)", a1);
a1 = w;
}
if ((*a0i & 1) ^ blackPixels) {