# HG changeset patch # User Gerd Moellmann # Date 943377723 0 # Node ID 9698de836607d79ad98706a9c90d9ecccbf9663a # Parent 5dec6111686f4ac40fcc1d00fe9b659920b66cbb (unexec): Use unsigned instead of uintptr_t because that fails on IBM PowerPC, AIX 4.2. diff -r 5dec6111686f -r 9698de836607 src/unexaix.c --- a/src/unexaix.c Tue Nov 23 13:17:01 1999 +0000 +++ b/src/unexaix.c Tue Nov 23 17:22:03 1999 +0000 @@ -151,9 +151,9 @@ * 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;