From: Andrew Morton Confidence decreasing... Cc: Christoph Hellwig Signed-off-by: Andrew Morton --- arch/x86_64/ia32/ptrace32.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/ia32/ptrace32.c~use-ptrace_get_task_struct-in-various-places-2-x86_64-fix arch/x86_64/ia32/ptrace32.c --- 25/arch/x86_64/ia32/ptrace32.c~use-ptrace_get_task_struct-in-various-places-2-x86_64-fix 2005-11-16 21:25:16.000000000 -0800 +++ 25-akpm/arch/x86_64/ia32/ptrace32.c 2005-11-16 21:25:24.000000000 -0800 @@ -228,7 +228,7 @@ asmlinkage long sys32_ptrace(long reques return ptrace_traceme(); child = ptrace_get_task_struct(pid); - if (IS_ERR(child)) { + if (IS_ERR(child)) return PTR_ERR(child); ret = ptrace_check_attach(child, request == PTRACE_KILL); _