From: Thorsten Alteholz Date: Wed, 27 Dec 2017 20:08:50 +0000 (-0800) Subject: a56: main.c and gram.c use different declarations of pc as pc is used X-Git-Tag: v1.1~17 X-Git-Url: https://jxself.org/git/?p=linux-libre-firmware.git;a=commitdiff_plain;h=46533e1cdbe38a7c2257eb0331e0e8e21c96cfe5 a56: 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 --- diff --git a/a56/main.c b/a56/main.c index cc03c74..a6efff3 100644 --- a/a56/main.c +++ b/a56/main.c @@ -9,6 +9,7 @@ /* * Copyright (C) 2008 Robert Millan + * Copyright (C) 2012 Thorsten Alteholz * * This file is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published @@ -51,7 +52,7 @@ static char *Copyright = "Copyright (C) 1990-1994 Quinn C. Jensen"; int pass; int error, warning; -extern unsigned long pc; +extern unsigned int pc; extern int seg; BOOL binary_listing = FALSE; BOOL list_includes = FALSE;