wmc: Add trailing newlines to error messages.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-02-06 15:29:33 +01:00
parent 8247686c10
commit ccfabb323b
1 changed files with 8 additions and 8 deletions

View File

@ -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 */