Skip to content

Commit

Permalink
Use proper long long conversion method
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Phoenix committed Nov 24, 2009
1 parent 9963b35 commit 66589a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/builtin/memorypointer.cpp
Expand Up @@ -106,7 +106,7 @@ namespace rubinius {
}

Integer* MemoryPointer::write_long_long(STATE, Integer* val) {
*(long long*)pointer = val->to_native();
*(long long*)pointer = val->to_long_long();
return val;
}

Expand Down

0 comments on commit 66589a5

Please sign in to comment.