Cardinal checking sometimes produced wrong error message
authorceriel <none@none>
Mon, 11 May 1992 09:50:21 +0000 (09:50 +0000)
committerceriel <none@none>
Mon, 11 May 1992 09:50:21 +0000 (09:50 +0000)
lang/m2/libm2/ucheck.c

index 3923e05..411a7ce 100644 (file)
@@ -53,13 +53,13 @@ mululchk(a,b)
 subuchk(a,b)
   unsigned     a,b;
 {
-  if (b < a) TRP(M2_UOVFL);
+  if (b < a) TRP(M2_UUVFL);
 }
 
 #if EM_WSIZE < EM_LSIZE
 subulchk(a,b)
   unsigned long        a,b;
 {
-  if (b < a) TRP(M2_UOVFL);
+  if (b < a) TRP(M2_UUVFL);
 }
 #endif