1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Author: Thorsten Alteholz <debian@alteholz.de>
Description: main.c and gram.c use different declarations of pc
as pc is used as an integer everywhere, the 'external unsigned long'
must be wrong (-> #689364)
Forwarded: not-needed as there is no upstream anymore
Index: a56/main.c
===================================================================
--- a56.orig/main.c 2012-11-26 13:12:43.000000000 +0100
+++ a56/main.c 2012-11-26 13:30:22.000000000 +0100
@@ -32,7 +32,7 @@
int pass;
int error, warning;
-extern unsigned long pc;
+extern unsigned int pc;
extern int seg;
BOOL binary_listing = FALSE;
BOOL list_includes = FALSE;
|