# HG changeset patch # User youngs # Date 1130570301 0 # Node ID 1c30c1cf589ec31ea297e72d20e2c2aa78247a8b # Parent 71959df6d0ad5928b14e8b9938a3af1a4ea5e6fb [xemacs-hg @ 2005-10-29 07:18:19 by youngs] 2005-10-29 Steve Youngs * unexelf.c (unexec): Fix data types. From: Andrey Slusar diff -r 71959df6d0ad -r 1c30c1cf589e src/ChangeLog --- a/src/ChangeLog Fri Oct 28 21:51:07 2005 +0000 +++ b/src/ChangeLog Sat Oct 29 07:18:21 2005 +0000 @@ -1,3 +1,8 @@ +2005-10-29 Steve Youngs + + * unexelf.c (unexec): Fix data types. + From: Andrey Slusar + 2005-10-26 Stephen J. Turnbull * XEmacs 21.5.23 "daikon" is released. diff -r 71959df6d0ad -r 1c30c1cf589e src/unexelf.c --- a/src/unexelf.c Fri Oct 28 21:51:07 2005 +0000 +++ b/src/unexelf.c Sat Oct 29 07:18:21 2005 +0000 @@ -565,8 +565,8 @@ * */ int -unexec (Extbyte *new_name, Extbyte *old_name, unsigned int UNUSED (data_start), - unsigned int UNUSED (bss_start), unsigned int UNUSED (entry_address)) +unexec (Extbyte *new_name, Extbyte *old_name, uintptr_t UNUSED (data_start), + uintptr_t UNUSED (bss_start), uintptr_t UNUSED (entry_address)) { int new_file, old_file, new_file_size;