Fix wrong cast in powerpc code

This commit is contained in:
Wichert Akkerman 2001-04-12 09:00:47 +00:00
parent 7a90acaf2b
commit 5c4c69bc80

View File

@ -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;