[gs-cvs] rev 7224 - trunk/gs/src
ray at ghostscript.com
ray at ghostscript.com
Fri Nov 24 13:18:42 PST 2006
Author: ray
Date: 2006-11-24 13:18:42 -0800 (Fri, 24 Nov 2006)
New Revision: 7224
Modified:
trunk/gs/src/zarith.c
Log:
Fix typo in previous commit (commit from a non-working directory after testing on
another system).
Modified: trunk/gs/src/zarith.c
===================================================================
--- trunk/gs/src/zarith.c 2006-11-24 21:13:30 UTC (rev 7223)
+++ trunk/gs/src/zarith.c 2006-11-24 21:18:42 UTC (rev 7224)
@@ -241,7 +241,7 @@
check_type(op[-1], t_integer);
if (op->value.intval == 0)
return_error(e_undefinedresult);
- if ((op[-1].value.intval == MIN_INTVAL && op->value.intval == -1) {
+ if (op[-1].value.intval == MIN_INTVAL && op->value.intval == -1) {
/* Anomalous boundary case: -MININT / -1, fail. */
return_error(e_rangecheck);
}
More information about the gs-cvs
mailing list