remove unwanted increment

This commit is contained in:
dzaima 2023-02-02 22:51:44 +02:00
parent 05c1270344
commit 356093e313

View File

@ -96,7 +96,7 @@ B wfn_c1(B t, B x) {
#endif
dec(exp);
#else
B r = fi(f, inc(x));
B r = fi(f, x);
#endif
return r;
}