`# ./checkpatch.pl 00*' reported (4x):
ERROR: space prohibited before that close parenthesis ')'
---
WINGs/menuparser.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/WINGs/menuparser.c b/WINGs/menuparser.c
index 7c4e875..a2c9678 100644
--- a/WINGs/menuparser.c
+++ b/WINGs/menuparser.c
@@ -377,7 +377,7 @@ found_end_squote:
if (limit-- > 0)
goto restart_token_split;
- WMenuParserError(parser, _("too many nested
macro expansions, breaking loop") );
+ WMenuParserError(parser, _("too many nested
macro expansions, breaking loop"));
while (isnamechr(*parser->rd))
parser->rd++;
@@ -500,7 +500,7 @@ found_end_define_fname:
count++;
if (count > MAX_NESTED_INCLUDES) {
- WMenuParserError(parser, _("too many nested
#include's") );
+ WMenuParserError(parser, _("too many nested
#include's"));
return False;
}
}
@@ -623,7 +623,7 @@ static void menu_parser_condition_ifmacro(WMenuParser
parser, Bool check_exists)
static void menu_parser_condition_else(WMenuParser parser)
{
if (parser->cond.depth <= 0) {
- WMenuParserError(parser, _("found #%s but has no matching
#if"), "else" );
+ WMenuParserError(parser, _("found #%s but has no matching
#if"), "else");
return;
}
@@ -640,7 +640,7 @@ static void menu_parser_condition_end(WMenuParser parser)
int idx;
if (parser->cond.depth <= 0) {
- WMenuParserError(parser, _("found #%s but has no matching
#if"), "endif" );
+ WMenuParserError(parser, _("found #%s but has no matching
#if"), "endif");
return;
}
--
2.0.5
--
To unsubscribe, send mail to [email protected].