f5f0737829
Most notably this commit fixes #1419501 that caused mock traceback when running with --new-chroot. Resolves: #1419501
29 lines
967 B
Diff
29 lines
967 B
Diff
From fe9d0ba1f8e60fbea433f75319d0487e5b58c79b Mon Sep 17 00:00:00 2001
|
|
From: "Thomas H. P. Andersen" <phomes@gmail.com>
|
|
Date: Tue, 7 Mar 2017 07:47:18 +0100
|
|
Subject: [PATCH] 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.
|
|
(cherry picked from commit 557e36934d21b08acafbe2baf6ebfde761fbae25)
|
|
---
|
|
src/cgtop/cgtop.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c
|
|
index a1c0f48..67f3a99 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);
|
|
--
|
|
2.9.3
|
|
|