Added closing brace that got lost when applying fix for modulo procedure.

This commit is contained in:
Kevin Cozens 2011-08-29 14:06:18 -04:00
parent 1574700215
commit fe20e7b181
1 changed files with 1 additions and 0 deletions

View File

@ -519,6 +519,7 @@ static num num_mod(num a, num b) {
/* modulo should have same sign as second operand */
if (res * e2 < 0) {
res+=e2;
}
ret.value.ivalue=res;
return ret;
}