From: Wichert Akkerman Date: Thu, 12 Apr 2001 09:00:47 +0000 (+0000) Subject: Fix wrong cast in powerpc code X-Git-Tag: v4.5.18~1042 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c4c69bc80874a0340d290b562db73d755e39129;p=strace Fix wrong cast in powerpc code --- diff --git a/process.c b/process.c index efa125f2..13dd69a1 100644 --- a/process.c +++ b/process.c @@ -460,7 +460,7 @@ int new; return -1; return 0; #elif defined(POWERPC) - if (ptrace(PTRACE_POKEUSER, tcp->pid, (CHAR*)(4*PT_R0), new) < 0) + if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_R0), new) < 0) return -1; #elif defined(S390) long pc;