summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--enum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/enum.c b/enum.c
index 3c6b7ee006..5a30ac2a98 100644
--- a/enum.c
+++ b/enum.c
@@ -940,13 +940,13 @@ tally_up(VALUE hash, VALUE group)
{
VALUE tally = rb_hash_aref(hash, group);
if (NIL_P(tally)) {
- tally = INT2FIX(1);
+ tally = INT2FIX(1);
}
else if (FIXNUM_P(tally) && tally < INT2FIX(FIXNUM_MAX)) {
- tally += INT2FIX(1) & ~FIXNUM_FLAG;
+ tally += INT2FIX(1) & ~FIXNUM_FLAG;
}
else {
- tally = rb_big_plus(tally, INT2FIX(1));
+ tally = rb_big_plus(tally, INT2FIX(1));
}
rb_hash_aset(hash, group, tally);
}