From cf39341a39938e304cf0f2371ac97ea4c48da973 Mon Sep 17 00:00:00 2001 From: Wizard Tai Date: Sat, 23 Aug 2014 15:28:58 +0000 Subject: [PATCH] jsmn.h:28:22: warning: commas at the end of enumerator lists are a C99-specific feature [-Wc99-extensions] WITH: -std=c89 -Wall -pedantic -Wno-declaration-after-statement --- jsmn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsmn.h b/jsmn.h index c8f388c..9174980 100644 --- a/jsmn.h +++ b/jsmn.h @@ -25,7 +25,7 @@ typedef enum { /* Invalid character inside JSON string */ JSMN_ERROR_INVAL = -2, /* The string is not a full JSON packet, more bytes expected */ - JSMN_ERROR_PART = -3, + JSMN_ERROR_PART = -3 } jsmnerr_t; /**