aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-23 17:22:03 +0000
committerGerd Moellmann1999-11-23 17:22:03 +0000
commitc31d7cc9f3fc673109ae69968f0842a66e1d7094 (patch)
treefa5e88ba3d110d1fad156ef7bcfbdd98301d49c2 /src
parent08de62001945d4dd32a3d6af44da05804cb296d5 (diff)
downloademacs-c31d7cc9f3fc673109ae69968f0842a66e1d7094.tar.gz
emacs-c31d7cc9f3fc673109ae69968f0842a66e1d7094.zip
(unexec): Use unsigned instead of uintptr_t because
that fails on IBM PowerPC, AIX 4.2.
Diffstat (limited to 'src')
-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 *);
151 * driving logic. 151 * driving logic.
152 */ 152 */
153int unexec (char *new_name, char *a_name, 153int unexec (char *new_name, char *a_name,
154 uintptr_t data_start, 154 unsigned data_start,
155 uintptr_t bss_start, 155 unsigned bss_start,
156 uintptr_t entry_address) 156 unsigned entry_address)
157{ 157{
158 int new = -1, a_out = -1; 158 int new = -1, a_out = -1;
159 159