diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-31 15:12:27 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-31 15:15:04 +0300 |
commit | 9f06729e2a47fe60d56cac78b0c167316938e0ef (patch) | |
tree | c00c5bd5e40bce8d5a7ec783c0976aaf4bebc15b /src/backend/utils/adt/json.c | |
parent | 0904eb3e19842dd103adb6a8b3f65987b678a0e6 (diff) | |
download | postgresql-9f06729e2a47fe60d56cac78b0c167316938e0ef.tar.gz postgresql-9f06729e2a47fe60d56cac78b0c167316938e0ef.zip |
Remove spurious semicolons.
Petr Jelinek
Diffstat (limited to 'src/backend/utils/adt/json.c')
-rw-r--r-- | src/backend/utils/adt/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/json.c b/src/backend/utils/adt/json.c index aa197f74142..0566b926fed 100644 --- a/src/backend/utils/adt/json.c +++ b/src/backend/utils/adt/json.c @@ -154,7 +154,7 @@ static inline void lex_expect(JsonParseContext ctx, JsonLexContext *lex, JsonTokenType token) { if (!lex_accept(lex, token, NULL)) - report_parse_error(ctx, lex);; + report_parse_error(ctx, lex); } /* chars to consider as part of an alphanumeric token */ |