From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755814AbdC1Up7 (ORCPT ); Tue, 28 Mar 2017 16:45:59 -0400 Received: from mail-pg0-f66.google.com ([74.125.83.66]:33080 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755677AbdC1Up4 (ORCPT ); Tue, 28 Mar 2017 16:45:56 -0400 From: Arushi Singhal To: outreachy-kernel@googlegroups.com Cc: linux-kernel@vger.kernel.org, Arushi Singhal Subject: [PATCH 2/5] kernel: pid.c: Add space before the open parenthesis Date: Wed, 29 Mar 2017 02:15:03 +0530 Message-Id: <20170328204506.16316-3-arushisinghal19971997@gmail.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170328204506.16316-1-arushisinghal19971997@gmail.com> References: <20170328204506.16316-1-arushisinghal19971997@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add the space before open parenthesis as reported by checkpatch.pl Signed-off-by: Arushi Singhal --- kernel/pid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/pid.c b/kernel/pid.c index 59ec7a671e06..5822142ca92a 100644 --- a/kernel/pid.c +++ b/kernel/pid.c @@ -266,7 +266,7 @@ void free_pid(struct pid *pid) struct upid *upid = pid->numbers + i; struct pid_namespace *ns = upid->ns; hlist_del_rcu(&upid->pid_chain); - switch(--ns->nr_hashed) { + switch (--ns->nr_hashed) { case 2: case 1: /* When all that is left in the pid namespace -- 2.11.0