Created
March 23, 2010 23:08
-
-
Save kronos/341799 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/vm/builtin/bignum.cpp b/vm/builtin/bignum.cpp | |
index 92b6d7f..1cd2205 100644 | |
--- a/vm/builtin/bignum.cpp | |
+++ b/vm/builtin/bignum.cpp | |
@@ -663,7 +663,7 @@ namespace rubinius { | |
Integer* Bignum::right_shift(STATE, Fixnum* bits) { | |
NMP; | |
- int shift = bits->to_native(); | |
+ native_int shift = bits->to_native(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment