From 8db7d24f989eb4dc75066225c349598a201cfebf Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Mon, 18 Mar 2024 09:11:46 +0100 Subject: [PATCH] fix compiler warning: -Wunused-variable --- quickjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickjs.c b/quickjs.c index e1ec8c3..6acf54c 100644 --- a/quickjs.c +++ b/quickjs.c @@ -19442,7 +19442,7 @@ static __exception int next_token(JSParseState *s) static int json_parse_string(JSParseState *s, const uint8_t **pp) { const uint8_t *p = *pp; - int ret, i; + int i; uint32_t c; StringBuffer b_s, *b = &b_s;