Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ccfabb32
Commit
ccfabb32
authored
Feb 06, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmc: Add trailing newlines to error messages.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8247686c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
mcy.y
tools/wmc/mcy.y
+8
-8
No files found.
tools/wmc/mcy.y
View file @
ccfabb32
...
...
@@ -48,14 +48,14 @@
#include "wmc.h"
#include "lang.h"
static const char err_syntax[] = "Syntax error";
static const char err_number[] = "Number expected";
static const char err_ident[] = "Identifier expected";
static const char err_assign[] = "'=' expected";
static const char err_popen[] = "'(' expected";
static const char err_pclose[] = "')' expected";
static const char err_colon[] = "':' expected";
static const char err_msg[] = "Message expected";
static const char err_syntax[] = "Syntax error
\n
";
static const char err_number[] = "Number expected
\n
";
static const char err_ident[] = "Identifier expected
\n
";
static const char err_assign[] = "'=' expected
\n
";
static const char err_popen[] = "'(' expected
\n
";
static const char err_pclose[] = "')' expected
\n
";
static const char err_colon[] = "':' expected
\n
";
static const char err_msg[] = "Message expected
\n
";
/* Scanner switches */
int want_nl = 0; /* Request next newlinw */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment