From 818e0aae44665a8e40efa987372ff2ca9a503cfe Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Mon, 4 Feb 2019 16:30:27 +0300 Subject: [PATCH] Removed a surplus argument to the parser exception macro. While here, fixed nearby style. --- njs/njs_parser_expression.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3