From: hongzhidao Date: Tue, 5 Mar 2019 00:32:54 +0000 (+0800) Subject: Style. X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=a022a140fc6f0b3c62eb74773bd73f71947c8587;p=njs.git Style. --- diff --git a/njs/njs_lexer.c b/njs/njs_lexer.c index 338304d0..71a8fc90 100644 --- a/njs/njs_lexer.c +++ b/njs/njs_lexer.c @@ -244,7 +244,7 @@ static const njs_lexer_multi_t njs_less_token[] = { }; -static const njs_lexer_multi_t njs_less_equal_token[] = { +static const njs_lexer_multi_t njs_strict_equal_token[] = { { '=', NJS_TOKEN_STRICT_EQUAL, 0, NULL }, }; @@ -268,7 +268,7 @@ static const njs_lexer_multi_t njs_greater_token[] = { static const njs_lexer_multi_t njs_assignment_token[] = { - { '=', NJS_TOKEN_EQUAL, 1, njs_less_equal_token }, + { '=', NJS_TOKEN_EQUAL, 1, njs_strict_equal_token }, };