poppler/JBIG2Stream.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 3806398512e94feee2ffa54e9b1b649ce36f3b76 Author: Albert Astals Cid <[email protected]> Date: Wed May 6 22:57:12 2009 +0200 Fix format printing diff --git a/poppler/JBIG2Stream.cc b/poppler/JBIG2Stream.cc index 33cd427..16cf1d8 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) { _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
