From 3a10501fa4c4fcd8b35225997ce758f07c9ab0b7 Mon Sep 17 00:00:00 2001 From: iasunsea Date: Fri, 22 Sep 2023 17:26:31 +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..2181a31 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 */