summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-11 05:10:58 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-11 05:10:58 +0000
commitcedb75e6a1025b72ee155fcc54d95650e079c2c1 (patch)
tree59c7bba73e704db8f21145ef0c8fbbe28b7a14c6 /time.c
parent52583c34d1d16ecb33d3d3425dd1d56bebc22e18 (diff)
merge from trunk (r27719)
* time.c (rb_big_abs_find_minbit): get rid of a warning of VC. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@27733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time.c b/time.c
index 62e4235603..7bd5c28cb3 100644
--- a/time.c
+++ b/time.c
@@ -345,7 +345,7 @@ rb_big_abs_find_minbit(VALUE big)
return Qnil;
res = mul(LONG2NUM(i), INT2FIX(SIZEOF_BDIGITS * CHAR_BIT));
d = ds[i];
- res = add(res, LONG2FIX(bdigit_find_maxbit(d & -d)));
+ res = add(res, LONG2FIX(bdigit_find_maxbit(d & (~d-1))));
return res;
}