changeset 3036:1c30c1cf589e

[xemacs-hg @ 2005-10-29 07:18:19 by youngs] 2005-10-29 Steve Youngs <steve@sxemacs.org> * unexelf.c (unexec): Fix data types. From: Andrey Slusar <anrays@gmail.com>
author youngs
date Sat, 29 Oct 2005 07:18:21 +0000
parents 71959df6d0ad
children 7f15f79bd87a
files src/ChangeLog src/unexelf.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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  <steve@sxemacs.org>
+
+	* unexelf.c (unexec): Fix data types.
+	From: Andrey Slusar <anrays@gmail.com>
+
 2005-10-26  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	* XEmacs 21.5.23 "daikon" is released.
--- 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;