From be7bf5aa0cd9a8e90dbaf268d53b8590fc23393d Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 29 Dec 2012 12:22:04 +0000 Subject: adjust style git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38654 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'array.c') 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; -- cgit v1.2.3