summaryrefslogtreecommitdiff
path: root/jsmn.h
diff options
context:
space:
mode:
authorWizard Tai <geb.1989@gmail.com>2014-08-23 15:28:58 +0000
committerWizard Tai <geb.1989@gmail.com>2014-08-23 15:28:58 +0000
commitcf39341a39938e304cf0f2371ac97ea4c48da973 (patch)
tree4ba771dfae20b16a66f27fba3f08f4fa51472026 /jsmn.h
parent76cd398859b868988d3ab0d663d9ba7c8b35e9d9 (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsmn.h b/jsmn.h
index c8f388cd0..9174980c5 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;
/**