aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/ldsym.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 2467ab4..2c04888 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 25 15:33:10 1993 Per Bothner (bothner@rtl.cygnus.com)
+
+ * ldsym.c (KEEP macro): Add spaces around '=' for the
+ sake of old (e.g. PCC) compilers.
+
Wed Feb 24 19:49:31 1993 Per Bothner (bothner@rtl.cygnus.com)
* ldver.c: Bump to version 2.1.
diff --git a/ld/ldsym.c b/ld/ldsym.c
index 11534c1..2351279 100644
--- a/ld/ldsym.c
+++ b/ld/ldsym.c
@@ -215,7 +215,7 @@ process_keepsyms (table, size)
errno = 0;
#define KEEP(S) \
- do { asymbol **p=(S), *tmp=*out; *out=*p; *p=tmp; out++; } while (0)
+ do { asymbol **p = (S), *tmp = *out; *out = *p; *p = tmp; out++; } while (0)
while (!feof (ks_file) && !ferror (ks_file))
{