diff options
author | Wizard Tai <geb.1989@gmail.com> | 2014-08-23 15:28:58 +0000 |
---|---|---|
committer | Wizard Tai <geb.1989@gmail.com> | 2014-08-23 15:28:58 +0000 |
commit | cf39341a39938e304cf0f2371ac97ea4c48da973 (patch) | |
tree | 4ba771dfae20b16a66f27fba3f08f4fa51472026 /jsmn.h | |
parent | 76cd398859b868988d3ab0d663d9ba7c8b35e9d9 (diff) |
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
Diffstat (limited to 'jsmn.h')
-rw-r--r-- | jsmn.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; /** |