Skip to content

Commit

Permalink
suppress warning of loop empty body
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 committed Jul 16, 2012
1 parent 2e93f6d commit 9fab2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bignum.c
Expand Up @@ -2495,7 +2495,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 && !zds[ny]){} ++ny;
if (dd) {
t2 = 0; i = ny;
while(i--) {
Expand Down

0 comments on commit 9fab2ee

Please sign in to comment.