Commit ccfabb32 authored by Alexandre Julliard's avatar Alexandre Julliard

wmc: Add trailing newlines to error messages.

parent 8247686c
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment