Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934917AbZAOVJW (ORCPT ); Thu, 15 Jan 2009 16:09:22 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S934573AbZAOU7y (ORCPT ); Thu, 15 Jan 2009 15:59:54 -0500 Received: from mx1.redhat.com ([66.187.233.31]:49394 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934717AbZAOU7w (ORCPT ); Thu, 15 Jan 2009 15:59:52 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Roland McGrath To: Andrew Morton , Linus Torvalds Cc: linux-kernel@vger.kernel.org Subject: [PATCH] trailing whitespace in kernel/ptrace.c X-Fcc: ~/Mail/linus X-Zippy-Says: My mind is making ashtrays in Dayton.... Message-Id: <20090115205751.B5F6EFC3DD@magilla.sf.frob.com> Date: Thu, 15 Jan 2009 12:57:51 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1349 Lines: 43 These bug me every time I want to touch ptrace.c, nix them. Signed-off-by: Roland McGrath --- kernel/ptrace.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/ptrace.c b/kernel/ptrace.c index c9cf48b..8f61ad8 100644 --- a/kernel/ptrace.c +++ b/kernel/ptrace.c @@ -48,7 +48,7 @@ void __ptrace_link(struct task_struct *child, struct task_struct *new_parent) list_add(&child->ptrace_entry, &new_parent->ptraced); child->parent = new_parent; } - + /* * Turn a tracing stop into a normal stop now, since with no tracer there * would be no way to wake it up with SIGCONT or SIGKILL. If there was a @@ -283,7 +283,7 @@ int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst copied += retval; src += retval; dst += retval; - len -= retval; + len -= retval; } return copied; } @@ -308,7 +308,7 @@ int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long ds copied += retval; src += retval; dst += retval; - len -= retval; + len -= retval; } return copied; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/