[gs-cvs] rev 7113 - trunk/gs/src
ray at ghostscript.com
ray at ghostscript.com
Wed Oct 18 06:32:59 PDT 2006
Author: ray
Date: 2006-10-18 06:32:51 -0700 (Wed, 18 Oct 2006)
New Revision: 7113
Modified:
trunk/gs/src/ziodev2.c
Log:
Fix error returned from currentdevparams. Fixes PS LL3 CET 27-03. Thanks
to Noriyuki Matsushima for this patch.
EXPECTED DIFFERENCES:
None.
Modified: trunk/gs/src/ziodev2.c
===================================================================
--- trunk/gs/src/ziodev2.c 2006-10-18 07:01:10 UTC (rev 7112)
+++ trunk/gs/src/ziodev2.c 2006-10-18 13:32:51 UTC (rev 7113)
@@ -68,7 +68,7 @@
check_read_type(*op, t_string);
iodev = gs_findiodevice(op->value.bytes, r_size(op));
if (iodev == 0)
- return_error(e_undefinedfilename);
+ return_error(e_undefined);
stack_param_list_write(&list, &o_stack, NULL, iimemory);
if ((code = gs_getdevparams(iodev, plist)) < 0) {
ref_stack_pop(&o_stack, list.count * 2);
More information about the gs-cvs
mailing list