fix compiler warning: -Wunused-variable

This commit is contained in:
Enno Boland 2024-03-18 09:11:46 +01:00 committed by Saúl Ibarra Corretgé
parent 5f8c636cef
commit 8db7d24f98

View file

@ -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;