From c31d7cc9f3fc673109ae69968f0842a66e1d7094 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 23 Nov 1999 17:22:03 +0000 Subject: [PATCH] (unexec): Use unsigned instead of uintptr_t because that fails on IBM PowerPC, AIX 4.2. --- src/unexaix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.5