mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
mruby-bigint/bigint.c: remove a condition to stop warnings
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user