diff options
author | Federico Culloca <federicoculloca@gmail.com> | 2011-10-30 12:13:15 +0100 |
---|---|---|
committer | Federico Culloca <federicoculloca@gmail.com> | 2011-10-30 12:13:15 +0100 |
commit | 7ec34c9b392eb1c2ca21b3812cc6eb2b597f345d (patch) | |
tree | b8623e68667154160d51d17c41a4273eeaaa14bf /json_object.c | |
parent | fbae8ad0ad0d92cc1a181673d1a10ab611b55cc8 (diff) |
Added capitalized charaters to json_hex_chars
Diffstat (limited to 'json_object.c')
-rw-r--r-- | json_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json_object.c b/json_object.c index 482c5e3..bc09d65 100644 --- a/json_object.c +++ b/json_object.c @@ -32,7 +32,7 @@ /* #define REFCOUNT_DEBUG 1 */ const char *json_number_chars = "0123456789.+-eE"; -const char *json_hex_chars = "0123456789abcdef"; +const char *json_hex_chars = "0123456789abcdefABCDEF"; static void json_object_generic_delete(struct json_object* jso); static struct json_object* json_object_new(enum json_type o_type); |