fix unused variable.
This commit is contained in:
parent
b1651fcdf0
commit
9348513d12
@ -177,7 +177,6 @@ p_rem(Term t1, Term t2) {
|
|||||||
{
|
{
|
||||||
Int i1 = IntegerOfTerm(t1);
|
Int i1 = IntegerOfTerm(t1);
|
||||||
Int i2 = IntegerOfTerm(t2);
|
Int i2 = IntegerOfTerm(t2);
|
||||||
Int mod;
|
|
||||||
|
|
||||||
if (i2 == 0)
|
if (i2 == 0)
|
||||||
return Yap_ArithError(EVALUATION_ERROR_ZERO_DIVISOR, t2, "X is " Int_FORMAT " rem 0", i1);
|
return Yap_ArithError(EVALUATION_ERROR_ZERO_DIVISOR, t2, "X is " Int_FORMAT " rem 0", i1);
|
||||||
@ -189,7 +188,6 @@ p_rem(Term t1, Term t2) {
|
|||||||
"rem/2 with %d and %d", i1, i2);
|
"rem/2 with %d and %d", i1, i2);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
mod = i1%i2;
|
|
||||||
RINT(i1%i2);
|
RINT(i1%i2);
|
||||||
}
|
}
|
||||||
case (CELL)double_e:
|
case (CELL)double_e:
|
||||||
|
Reference in New Issue
Block a user