Commit c79561f7 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Silence parser_error warning.

It's triggered on handling implicit semi-colon in the end of statement. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent fcaa685c
......@@ -1468,7 +1468,6 @@ static int parser_error(unsigned *loc, parser_ctx_t *ctx, const char *str)
ctx->error_loc = *loc;
if(ctx->hres == S_OK)
ctx->hres = JS_E_SYNTAX;
WARN("%s: %s\n", debugstr_w(ctx->begin + *loc), str);
return 0;
}
......
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