From: Dmitry Volyntsev Date: Tue, 14 Jul 2020 17:21:53 +0000 (+0000) Subject: Style. X-Git-Tag: 0.4.3~20 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=8fd3a5659e8fa3019532c6e7fd3fbeb0c66fd7aa;p=njs.git Style. --- diff --git a/src/njs_parser.c b/src/njs_parser.c index 4803292c..1f0b9673 100644 --- a/src/njs_parser.c +++ b/src/njs_parser.c @@ -3140,7 +3140,7 @@ njs_parser_left_hand_side_expression_optional(njs_parser_t *parser, static njs_int_t njs_parser_expression_node(njs_parser_t *parser, njs_lexer_token_t *token, - njs_queue_link_t *current, njs_token_type_t type, + njs_queue_link_t *current, njs_token_type_t type, njs_vmcode_operation_t operation, njs_parser_state_func_t after) { njs_parser_node_t *node; diff --git a/src/njs_typed_array.c b/src/njs_typed_array.c index 1ab8a1be..407fe8c3 100644 --- a/src/njs_typed_array.c +++ b/src/njs_typed_array.c @@ -597,7 +597,7 @@ njs_typed_array_prototype_fill(njs_vm_t *vm, njs_value_t *args, for (i = start; i < end; i++) { buffer->u.f64[i + offset] = num; } - } + } return NJS_OK; }