From 88620824c2a62376e224c4b595b9fe69fb858978 Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Thu, 4 Apr 2024 12:41:55 -0400 Subject: Tidy up after incremental JSON parser patch Remove junk left over from non-vpath builds. Try to remedy gettext error on some platforms. --- src/common/jsonapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common/jsonapi.c') diff --git a/src/common/jsonapi.c b/src/common/jsonapi.c index 0bc3e426b20..5f947dd6182 100644 --- a/src/common/jsonapi.c +++ b/src/common/jsonapi.c @@ -2112,9 +2112,9 @@ json_errdetail(JsonParseErrorType error, JsonLexContext *lex) break; case JSON_INVALID_LEXER_TYPE: if (lex->incremental) - return (_("Recursive descent parser cannot use incremental lexer")); + return _("Recursive descent parser cannot use incremental lexer"); else - return (_("Incremental parser requires incremental lexer")); + return _("Incremental parser requires incremental lexer"); case JSON_NESTING_TOO_DEEP: return (_("JSON nested too deep, maximum permitted depth is 6400")); case JSON_ESCAPING_INVALID: -- cgit v1.2.3