py: Fix type of integer in decoding int.

pull/313/head
Damien George 2014-02-20 00:00:04 +00:00
rodzic b74501c98f
commit 4d79d5dd7c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -157,7 +157,7 @@ dispatch_loop:
break;
case MP_BC_LOAD_CONST_SMALL_INT: {
int num = 0;
machine_int_t num = 0;
if ((ip[0] & 0x40) != 0) {
// Number is negative
num--;