From: Thomas H. P. Andersen Date: Tue, 7 Mar 2017 06:47:18 +0000 (+0100) Subject: cgtop: use PRIu64 to print uint64_t (#5544) X-Git-Tag: v234~388 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=557e36934d21b08acafbe2baf6ebfde761fbae25;p=thirdparty%2Fsystemd.git cgtop: use PRIu64 to print uint64_t (#5544) Commit 59f448cf replaced usage of off_t with uint64_t. Change the format string to use PRIu64 to match it. --- diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c index a1c0f48c890..67f3a99860c 100644 --- a/src/cgtop/cgtop.c +++ b/src/cgtop/cgtop.c @@ -118,7 +118,7 @@ static const char *maybe_format_bytes(char *buf, size_t l, bool is_valid, uint64 if (!is_valid) return "-"; if (arg_raw) { - snprintf(buf, l, "%jd", t); + snprintf(buf, l, "%" PRIu64, t); return buf; } return format_bytes(buf, l, t);