All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: speakup: Remove return variable
@ 2019-03-19 19:37 Nishka Dasgupta
  2019-03-19 20:01 ` [Outreachy kernel] " Julia Lawall
  2019-03-19 22:05 ` Samuel Thibault
  0 siblings, 2 replies; 4+ messages in thread
From: Nishka Dasgupta @ 2019-03-19 19:37 UTC (permalink / raw)
  To: w.d.hubbs, chris, kirk, samuel.thibault, gregkh, outreachy-kernel
  Cc: Nishka Dasgupta

Remove return variable and return the required value directly. Issue
suggested by Coccinelle using ret.cocci.

Signed-off-by: Nishka Dasgupta <nishka.dasgupta@yahoo.com>
---
 drivers/staging/speakup/i18n.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/speakup/i18n.c b/drivers/staging/speakup/i18n.c
index ee240d36f947..a748eb8052d1 100644
--- a/drivers/staging/speakup/i18n.c
+++ b/drivers/staging/speakup/i18n.c
@@ -470,8 +470,7 @@ static char *find_specifier_end(char *input)
 	input++;		/* Advance over %. */
 	input = skip_flags(input);
 	input = skip_width(input);
-	input = skip_conversion(input);
-	return input;
+	return skip_conversion(input);
 }
 
 /*
-- 
2.19.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-20 15:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-19 19:37 [PATCH] staging: speakup: Remove return variable Nishka Dasgupta
2019-03-19 20:01 ` [Outreachy kernel] " Julia Lawall
2019-03-19 22:05 ` Samuel Thibault
2019-03-20 15:55   ` NIshka Dasgupta

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.