From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754079AbdAZRne (ORCPT ); Thu, 26 Jan 2017 12:43:34 -0500 Received: from mail-pg0-f66.google.com ([74.125.83.66]:33419 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752855AbdAZRnc (ORCPT ); Thu, 26 Jan 2017 12:43:32 -0500 From: Daksh Anand Cc: daksh anand , William Hubbs , Chris Brannon , Kirk Reiser , Samuel Thibault , Greg Kroah-Hartman , Alison Schofield , Julia Lawall , speakup@linux-speakup.org (open list:STAGING - SPEAKUP CONSOLE SPEECH DRIVER), devel@driverdev.osuosl.org (open list:STAGING SUBSYSTEM), linux-kernel@vger.kernel.org (open list) Subject: [PATCH] Corrected some Coding Style Issues V2 Date: Thu, 26 Jan 2017 23:09:44 +0530 Message-Id: <1485452386-4588-1-git-send-email-dakshanand@gmail.com> X-Mailer: git-send-email 2.7.4 To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: daksh anand Signed-off-by: daksh anand --- drivers/staging/speakup/i18n.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/speakup/i18n.c b/drivers/staging/speakup/i18n.c index b8f5bed..56ce386 100644 --- a/drivers/staging/speakup/i18n.c +++ b/drivers/staging/speakup/i18n.c @@ -407,7 +407,7 @@ static char *next_specifier(char *input) int found = 0; char *next_percent = input; - while ((next_percent) && !found) { + while (next_percent && !found) { next_percent = strchr(next_percent, '%'); if (next_percent) { /* skip over doubled percent signs */ -- 2.7.4