From: Gerd Moellmann Date: Tue, 23 Nov 1999 17:22:03 +0000 (+0000) Subject: (unexec): Use unsigned instead of uintptr_t because X-Git-Tag: emacs-pretest-21.0.90~6007 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c31d7cc9f3fc673109ae69968f0842a66e1d7094;p=emacs.git (unexec): Use unsigned instead of uintptr_t because that fails on IBM PowerPC, AIX 4.2. --- diff --git a/src/unexaix.c b/src/unexaix.c index 787af5ac9b2..17df5b5174b 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -151,9 +151,9 @@ static void write_segment (int, char *, char *); * driving logic. */ int unexec (char *new_name, char *a_name, - uintptr_t data_start, - uintptr_t bss_start, - uintptr_t entry_address) + unsigned data_start, + unsigned bss_start, + unsigned entry_address) { int new = -1, a_out = -1;