aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/unexalpha.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 00fca4e962a..924270f8af6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12002-11-25 Dave Love <fx@gnu.org>
2
3 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
4
5 * Makefile.in (TEMACS_LDFLAGS): Update last change.
6
12002-11-25 Andreas Schwab <schwab@suse.de> 72002-11-25 Andreas Schwab <schwab@suse.de>
2 8
3 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change. 9 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
diff --git a/src/unexalpha.c b/src/unexalpha.c
index 9ffeee973b5..e4eed3922bd 100644
--- a/src/unexalpha.c
+++ b/src/unexalpha.c
@@ -491,7 +491,7 @@ update_dynamic_symbols (old, new_name, new, aout)
491 else if (rd_base[i].type == R_REFQUAD) 491 else if (rd_base[i].type == R_REFQUAD)
492 len = 8; 492 len = 8;
493 else 493 else
494 fatal_unexec ("unrecognized relocation type in .dyn.rel section (symbol #%d)", i); 494 fatal_unexec ("unrecognized relocation type in .dyn.rel section (symbol #%d)", (char *) i);
495 495
496 SEEK (new, newref, "seeking to dynamic symbol in %s", new_name); 496 SEEK (new, newref, "seeking to dynamic symbol in %s", new_name);
497 WRITE (new, oldref, len, "writing old dynrel info in %s", new_name); 497 WRITE (new, oldref, len, "writing old dynrel info in %s", new_name);