summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 3bbf9356db..6f14b99933 100644
--- a/array.c
+++ b/array.c
@@ -4582,7 +4582,7 @@ static VALUE
descending_factorial(long from, long how_many)
{
VALUE cnt = LONG2FIX(how_many >= 0);
- while(how_many-- > 0) {
+ while (how_many-- > 0) {
cnt = rb_funcall(cnt, '*', 1, LONG2FIX(from--));
}
return cnt;