summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn van Groningen2010-10-13 12:46:39 +0000
committerJohn van Groningen2010-10-13 12:46:39 +0000
commit0a8b005948611d3868eedc530b39951b0c9864a8 (patch)
treefddc18a02a42bea881d24b0936ac259ea9273d0e
parentuse memmove instead of memcpy (diff)
change type of n from long to LONG to prevent c compiler warning on 64 bit linux
-rw-r--r--cginput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cginput.c b/cginput.c
index 052ed9f..e76653c 100644
--- a/cginput.c
+++ b/cginput.c
@@ -1869,7 +1869,7 @@ static int parse_instruction_in_or_out (InstructionP instruction)
p=parameters;
while ((last_char & ~0x20)=='A' || (last_char & ~0x20)=='B'){
- long n;
+ LONG n;
*p++=last_char;
last_char=getc (abc_file);