]> granicus.if.org Git - graphviz/commitdiff
Fix build with ghostscript-9.18.
authorJakob Nixdorf <flocke@shadowice.org>
Fri, 22 Jan 2016 19:10:42 +0000 (20:10 +0100)
committerJakob Nixdorf <flocke@shadowice.org>
Fri, 22 Jan 2016 19:10:42 +0000 (20:10 +0100)
plugin/gs/gvloadimage_gs.c

index 4ed9b717f13916a1f41b58eb1b9f1f60140a79e8..62dd3c933d54c036313cccc696cf21cd22c9f462 100644 (file)
@@ -72,11 +72,11 @@ static void gs_error(GVJ_t * job, const char *name, const char *funstr, int err)
 
     assert (err < 0);
 
-    if (err >= e_VMerror) 
+    if (err >= gs_error_VMerror) 
        errsrc = "PostScript Level 1"; 
-    else if (err >= e_unregistered)
+    else if (err >= gs_error_unregistered)
        errsrc = "PostScript Level 2";
-    else if (err >= e_invalidid)
+    else if (err >= gs_error_invalidid)
        errsrc = "DPS error";
     else
        errsrc = "Ghostscript internal error";