From 3d23725ab9b0a01e747b78c46473c3bfa3ff31dd Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 21 Aug 2012 16:40:02 +0000 Subject: bignum.c: suppress an empty-body warning * bignum.c (bigdivrem): move decrement to the loop body, to suppress an empty-body warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bignum.c b/bignum.c index fc713a00cd..3f59b8edf9 100644 --- a/bignum.c +++ b/bignum.c @@ -2812,7 +2812,7 @@ bigdivrem(VALUE x, VALUE y, volatile VALUE *divp, volatile VALUE *modp) if (modp) { /* normalize remainder */ *modp = zz = rb_big_clone(z); zds = BDIGITS(zz); - while (--ny && !zds[ny]); ++ny; + while (ny > 0 && !zds[ny-1]) --ny; if (dd) { t2 = 0; i = ny; while(i--) { -- cgit v1.2.3