From a54254284f669d2d980cf3e193657769763dd962 Mon Sep 17 00:00:00 2001 From: iasunsea Date: Fri, 22 Sep 2023 17:10:12 +0800 Subject: [PATCH] fix error des of 'error_memory' 3dad694 and 6dd8618 , the decs mast keep the same as the enum change the post --- json_tokener.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/json_tokener.c b/json_tokener.c index 9926563..896734c 100644 --- a/json_tokener.c +++ b/json_tokener.c @@ -116,8 +116,8 @@ static const char *json_tokener_errors[] = { "invalid string sequence", "expected comment", "invalid utf-8 string", - "buffer size overflow", - "out of memory" + "out of memory", + "buffer size overflow" }; /* clang-format on */