Skip to content

Instantly share code, notes, and snippets.

@kronos
Created March 23, 2010 23:08
Show Gist options
  • Save kronos/341799 to your computer and use it in GitHub Desktop.
Save kronos/341799 to your computer and use it in GitHub Desktop.
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