From: Sergey Kandaurov Date: Mon, 4 Feb 2019 13:30:27 +0000 (+0300) Subject: Removed a surplus argument to the parser exception macro. X-Git-Tag: 0.2.8~44 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=818e0aae44665a8e40efa987372ff2ca9a503cfe;p=njs.git Removed a surplus argument to the parser exception macro. While here, fixed nearby style. --- diff --git a/njs/njs_parser_expression.c b/njs/njs_parser_expression.c index 84380bb0..f38d757a 100644 --- a/njs/njs_parser_expression.c +++ b/njs/njs_parser_expression.c @@ -648,8 +648,8 @@ njs_parser_unary_expression(njs_vm_t *vm, njs_parser_t *parser, case NJS_TOKEN_NAME: case NJS_TOKEN_UNDEFINED: - njs_parser_syntax_error(vm, parser, - "Delete of an unqualified identifier", NULL); + njs_parser_syntax_error(vm, parser, + "Delete of an unqualified identifier"); return NJS_TOKEN_ILLEGAL;