1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Index: src/ipetoipe/ipetoipe.cpp
===================================================================
RCS file: /home/steve/lib/cvs/debian/ipe/src/ipetoipe/ipetoipe.cpp,v
retrieving revision 1.1.1.6
retrieving revision 1.5
diff -u -b -B -r1.1.1.6 -r1.5
--- src/ipetoipe/ipetoipe.cpp 14 Dec 2005 04:45:59 -0000 1.1.1.6
+++ src/ipetoipe/ipetoipe.cpp 11 Apr 2006 03:47:52 -0000 1.5
@@ -83,7 +83,7 @@
}
if (fm == IpeDocument::EEps && doc->TotalViews() > 1) {
fprintf(stderr,
- "The document contains %d pages, cannot convert to EPS format.\n",
+ "The document contains %zu pages, cannot convert to EPS format.\n",
doc->size());
delete doc;
return 1;
Index: src/ipetopng/ipetopng.cpp
===================================================================
RCS file: /home/steve/lib/cvs/debian/ipe/src/ipetopng/ipetopng.cpp,v
retrieving revision 1.1.1.4
retrieving revision 1.4
diff -u -b -B -r1.1.1.4 -r1.4
--- src/ipetopng/ipetopng.cpp 14 Dec 2005 04:45:59 -0000 1.1.1.4
+++ src/ipetopng/ipetopng.cpp 11 Apr 2006 03:47:53 -0000 1.4
@@ -73,7 +73,7 @@
}
if (pageNum < 1 || pageNum > int(doc->size())) {
fprintf(stderr,
- "The document contains %d pages, cannot convert page %d.\n",
+ "The document contains %zu pages, cannot convert page %d.\n",
doc->size(), pageNum);
delete doc;
return 1;
|