[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1443790785-17663-1-git-send-email-javier@osg.samsung.com>
Date: Fri, 2 Oct 2015 14:59:45 +0200
From: Javier Martinez Canillas <javier@....samsung.com>
To: linux-kernel@...r.kernel.org
Cc: Javier Martinez Canillas <javier@....samsung.com>,
Fabio Estevam <fabio.estevam@...escale.com>,
Nicolas Palix <nicolas.palix@...g.fr>,
Michal Marek <mmarek@...e.com>,
Gilles Muller <Gilles.Muller@...6.fr>,
Julia Lawall <Julia.Lawall@...6.fr>, cocci@...teme.lip6.fr
Subject: [PATCH] coccinelle: simple_return: fix typos in messages
All messages have a typo that misspells the word simplified.
Signed-off-by: Javier Martinez Canillas <javier@....samsung.com>
---
scripts/coccinelle/misc/simple_return.cocci | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/scripts/coccinelle/misc/simple_return.cocci b/scripts/coccinelle/misc/simple_return.cocci
index e8b6313b116f..ad22c5236ff6 100644
--- a/scripts/coccinelle/misc/simple_return.cocci
+++ b/scripts/coccinelle/misc/simple_return.cocci
@@ -134,7 +134,7 @@ p1 << s1.p1;
q << s2.q;
@@
-msg = "WARNING: end returns can be simpified and declaration on line %s can be dropped" % (q[0].line)
+msg = "WARNING: end returns can be simplified and declaration on line %s can be dropped" % (q[0].line)
coccilib.report.print_report(p[0],msg)
cocci.include_match(False)
@@ -145,7 +145,7 @@ q << s2.q
;
@@
-msg = "WARNING: end returns may be simpified if negative or 0 value and declaration on line %s can be dropped" % (q[0].line)
+msg = "WARNING: end returns may be simplified if negative or 0 value and declaration on line %s can be dropped" % (q[0].line)
coccilib.report.print_report(p[0],msg)
cocci.include_match(False)
@@ -154,7 +154,7 @@ p << s1.p;
p1 << s1.p1;
@@
-msg = "WARNING: end returns can be simpified"
+msg = "WARNING: end returns can be simplified"
coccilib.report.print_report(p[0],msg)
@script:python depends on report@
@@ -162,19 +162,19 @@ p << s1.p;
p2 << s1.p2;
@@
-msg = "WARNING: end returns can be simpified if negative or 0 value"
+msg = "WARNING: end returns can be simplified if negative or 0 value"
coccilib.report.print_report(p[0],msg)
@script:python depends on report@
p << s3.p1;
@@
-msg = "WARNING: end returns can be simpified"
+msg = "WARNING: end returns can be simplified"
coccilib.report.print_report(p[0],msg)
@script:python depends on report@
p << s3.p2;
@@
-msg = "WARNING: end returns can be simpified if tested value is negative or 0"
+msg = "WARNING: end returns can be simplified if tested value is negative or 0"
coccilib.report.print_report(p[0],msg)
--
2.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists