Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1567632

[PATCH] Corrected some Coding Style Issues V2

From Daksh Anand <dakshanand@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] Corrected some Coding Style Issues V2
Date 2017-01-26 18:50 +0100
Message-ID <t3Wlj-1PQ-21@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: daksh anand <dakshanand@gmail.com>

Signed-off-by: daksh anand <dakshanand@gmail.com>
---
 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

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH] Corrected some Coding Style Issues V2 Daksh Anand <dakshanand@gmail.com> - 2017-01-26 18:50 +0100

csiph-web