File: pc-type.patch

package info (click to toggle)
a56 1.3%2Bdfsg-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 664 kB
  • sloc: yacc: 7,550; ansic: 5,851; makefile: 231; awk: 4; sh: 1
file content (18 lines) | stat: -rw-r--r-- 636 bytes parent folder | download
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;