diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-03-28 13:58:05 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-03-28 13:58:05 +0000 |
commit | 4a9a949e57587bc80ffb152f0f50753a996600b9 (patch) | |
tree | e29b620fcc06864bd074668e6d1eff7afeb26577 | |
parent | 69f2318b547cba413a50f92ca84783f29e2e1c83 (diff) | |
download | ports-4a9a949e57587bc80ffb152f0f50753a996600b9.tar.gz ports-4a9a949e57587bc80ffb152f0f50753a996600b9.zip |
- Fix build with clang
PR: 174240
Submitted by: Keith White <kwhite@uottawa.ca>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=315469
-rw-r--r-- | devel/dev86/files/patch-as__genlist.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/dev86/files/patch-as__genlist.c b/devel/dev86/files/patch-as__genlist.c new file mode 100644 index 000000000000..1aa91dbaa171 --- /dev/null +++ b/devel/dev86/files/patch-as__genlist.c @@ -0,0 +1,11 @@ +--- as/genlist.c.orig 2001-06-23 22:13:19.000000000 +0200 ++++ as/genlist.c 2013-03-10 18:40:54.000000000 +0100 +@@ -119,7 +119,7 @@ register char *where; + power = 5; /* actually 1 more than power */ + do + { +- for (digit = '0', power_of_10 = (powers_of_10 - 1)[power]; ++ for (digit = '0', power_of_10 = powers_of_10[power - 1]; + num >= power_of_10; num -= power_of_10) + ++digit; + if (power <= width) |