fixed some more bugs

This commit is contained in:
eck
1989-11-03 10:36:56 +00:00
parent bc565a13f1
commit 6e551adf21
4 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ ch3bin(pval, oper, val)
switch (oper) {
case '%':
if (val == 0)
error("% by 0");
error("%% by 0");
else
*pval = *pval % val;
break;