From a090bd6c264a090e31414281b7e3164bbec12b88 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 5 Feb 2015 10:09:13 +1100 Subject: [PATCH] Convert use of %ld to PRId64 in ckpool.c --- src/ckpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ckpool.c b/src/ckpool.c index e51af761..952d2561 100644 --- a/src/ckpool.c +++ b/src/ckpool.c @@ -979,7 +979,7 @@ bool json_get_int64(int64_t *store, const json_t *val, const char *res) goto out; } *store = json_integer_value(entry); - LOGDEBUG("Json found entry %s: %ld", res, *store); + LOGDEBUG("Json found entry %s: %"PRId64, res, *store); ret = true; out: return ret;