]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Use the right format string (Thanks pnutzh4x0r)
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 4 Aug 2011 21:34:23 +0000 (23:34 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 4 Aug 2011 21:34:23 +0000 (23:34 +0200)
src/load_layout.c

index ecd0a982eb6d7d42f72381f21ebb2013e00c0454..b61a0e5c490210a72d30255ebef30ed576469c4c 100644 (file)
@@ -153,10 +153,11 @@ static int json_string(void *ctx, const unsigned char *val, unsigned int len) {
 
 #if YAJL_MAJOR >= 2
 static int json_int(void *ctx, long long val) {
+    LOG("int %lld for key %s\n", val, last_key);
 #else
 static int json_int(void *ctx, long val) {
+    LOG("int %ld for key %s\n", val, last_key);
 #endif
-    LOG("int %d for key %s\n", val, last_key);
     if (strcasecmp(last_key, "type") == 0) {
         json_node->type = val;
     }