diff options
author | John van Groningen | 2011-04-27 14:43:10 +0000 |
---|---|---|
committer | John van Groningen | 2011-04-27 14:43:10 +0000 |
commit | 15d4c790a8cad26dd301abdc677fdaf67d177261 (patch) | |
tree | 964cc339908b8e89ee76db5a8407bc1af0246993 | |
parent | add rotl% and rotr% instructions (diff) |
use CleanInt instead of LONG, to get 64 bit integers on 64 bit windows
-rw-r--r-- | cginput.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1213,7 +1213,8 @@ static int parse_instruction_c_n (InstructionP instruction) static int parse_instruction_i_n (InstructionP instruction) { - LONG i,n; + CleanInt i; + LONG n; if (!parse_integer (&i) || !parse_unsigned_integer (&n)) return 0; |