From: Dave Love Date: Mon, 25 Nov 2002 19:21:33 +0000 (+0000) Subject: (update_dynamic_symbols): Cast arg of fatal_unexec. X-Git-Tag: ttn-vms-21-2-B4~12270 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4042a81aa73ce8e2ef3b01836583d2aba1baa8f9;p=emacs.git (update_dynamic_symbols): Cast arg of fatal_unexec. --- diff --git a/src/ChangeLog b/src/ChangeLog index 00fca4e962a..924270f8af6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2002-11-25 Dave Love + + * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec. + + * Makefile.in (TEMACS_LDFLAGS): Update last change. + 2002-11-25 Andreas Schwab * 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) else if (rd_base[i].type == R_REFQUAD) len = 8; else - fatal_unexec ("unrecognized relocation type in .dyn.rel section (symbol #%d)", i); + fatal_unexec ("unrecognized relocation type in .dyn.rel section (symbol #%d)", (char *) i); SEEK (new, newref, "seeking to dynamic symbol in %s", new_name); WRITE (new, oldref, len, "writing old dynrel info in %s", new_name);