]> www.fi.muni.cz Git - evince.git/commitdiff
Some casting fixes, so gpdf will build with recent gcc
authorPeter Teichman <teichman@src.gnome.org>
Wed, 6 Oct 1999 18:14:26 +0000 (18:14 +0000)
committerPeter Teichman <teichman@src.gnome.org>
Wed, 6 Oct 1999 18:14:26 +0000 (18:14 +0000)
pdf/xpdf/PSOutputDev.cc

index edff5cddfa323089bdd7e3353a10735f6e86621c..fa7c13eaea85e1e20e74e1049964af49f153e615 100644 (file)
@@ -481,12 +481,12 @@ void PSOutputDev::setupFont(GfxFont *font) {
   writePS("/F%d_%d /%s %g\n",
          font->getID().num, font->getID().gen, psName, scale);
   for (i = 0; i < 256; i += 8) {
-    writePS((i == 0) ? "[ " : "  ");
+    writePS((i == 0) ? (char *)"[ " : (char *)"  ");
     for (j = 0; j < 8; ++j) {
       charName = font->getCharName(i+j);
-      writePS("/%s", charName ? charName : ".notdef");
+      writePS("/%s", charName ? charName : (char *)".notdef");
     }
-    writePS((i == 256-8) ? "]\n" : "\n");
+    writePS((i == 256-8) ? (char *)"]\n" : (char *)"\n");
   }
   writePS("pdfMakeFont\n");
 }