summaryrefslogtreecommitdiff
path: root/src/unexaix.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-11-23 17:22:03 +0000
committerGerd Moellmann <gerd@gnu.org>1999-11-23 17:22:03 +0000
commitc31d7cc9f3fc673109ae69968f0842a66e1d7094 (patch)
treefa5e88ba3d110d1fad156ef7bcfbdd98301d49c2 /src/unexaix.c
parent08de62001945d4dd32a3d6af44da05804cb296d5 (diff)
downloademacs-c31d7cc9f3fc673109ae69968f0842a66e1d7094.tar.gz
(unexec): Use unsigned instead of uintptr_t because
that fails on IBM PowerPC, AIX 4.2.
Diffstat (limited to 'src/unexaix.c')
-rw-r--r--src/unexaix.c6
1 files 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;