diff options
| author | Dave Love | 2002-11-25 19:21:33 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-25 19:21:33 +0000 |
| commit | 4042a81aa73ce8e2ef3b01836583d2aba1baa8f9 (patch) | |
| tree | 6be3ee9d245a6de98ce0e8387aee8086df4f405e /src | |
| parent | afb44cc2a5095f015fd36c640863cda1d6592810 (diff) | |
| download | emacs-4042a81aa73ce8e2ef3b01836583d2aba1baa8f9.tar.gz emacs-4042a81aa73ce8e2ef3b01836583d2aba1baa8f9.zip | |
(update_dynamic_symbols): Cast arg of fatal_unexec.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/unexalpha.c | 2 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-11-25 Andreas Schwab <schwab@suse.de> | 7 | 2002-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); |