Browse Source

Convert use of %ld to PRId64 in ckpool.c

master
Con Kolivas 10 years ago
parent
commit
a090bd6c26
  1. 2
      src/ckpool.c

2
src/ckpool.c

@ -979,7 +979,7 @@ bool json_get_int64(int64_t *store, const json_t *val, const char *res)
goto out; goto out;
} }
*store = json_integer_value(entry); *store = json_integer_value(entry);
LOGDEBUG("Json found entry %s: %ld", res, *store); LOGDEBUG("Json found entry %s: %"PRId64, res, *store);
ret = true; ret = true;
out: out:
return ret; return ret;

Loading…
Cancel
Save