From 15d4c790a8cad26dd301abdc677fdaf67d177261 Mon Sep 17 00:00:00 2001 From: John van Groningen Date: Wed, 27 Apr 2011 14:43:10 +0000 Subject: use CleanInt instead of LONG, to get 64 bit integers on 64 bit windows --- cginput.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cginput.c') diff --git a/cginput.c b/cginput.c index 3aaf37d..957bb1d 100644 --- a/cginput.c +++ b/cginput.c @@ -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; -- cgit v1.2.3