Bugfix: Use the right format string (Thanks pnutzh4x0r)
This commit is contained in:
parent
7e0cbf18f9
commit
f2e1e220a4
|
@ -153,10 +153,11 @@ static int json_string(void *ctx, const unsigned char *val, unsigned int len) {
|
||||||
|
|
||||||
#if YAJL_MAJOR >= 2
|
#if YAJL_MAJOR >= 2
|
||||||
static int json_int(void *ctx, long long val) {
|
static int json_int(void *ctx, long long val) {
|
||||||
|
LOG("int %lld for key %s\n", val, last_key);
|
||||||
#else
|
#else
|
||||||
static int json_int(void *ctx, long val) {
|
static int json_int(void *ctx, long val) {
|
||||||
|
LOG("int %ld for key %s\n", val, last_key);
|
||||||
#endif
|
#endif
|
||||||
LOG("int %d for key %s\n", val, last_key);
|
|
||||||
if (strcasecmp(last_key, "type") == 0) {
|
if (strcasecmp(last_key, "type") == 0) {
|
||||||
json_node->type = val;
|
json_node->type = val;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue