mruby-bigint/bigint.c: remove a condition to stop warnings

This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-03-13 08:06:41 +09:00
parent 9cf49d08b4
commit dd0a9e8970
+1 -1
View File
@@ -78,7 +78,7 @@ mpz_set_int(mrb_state *mrb, mpz_t *y, mrb_int v)
y->sn = 1;
u = v;
}
else if (v < 0) {
else /* if (v < 0) */ {
y->sn = -1;
if (v == MRB_INT_MIN) u = v;
else u = -v;