Skip to content

Commit

Permalink
[Truffle] Fix a bad bug promoting long to BigInteger!
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Oct 29, 2014
1 parent b23bd9b commit e1cf5f6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@ public Object fixnumOrBignum(BigInteger value) {
return (int) longValue;
} else {
longProfile.enter();
return value;
return longValue;
}
} else {
return value;
Expand Down

0 comments on commit e1cf5f6

Please sign in to comment.