d743bb5bcc
This reverts commits3fb4a15096
and0e8350ca14
. Either building with meson or other upstream changes was causing issues with booting, and I didn't have time to debug this properly.
26 lines
962 B
Diff
26 lines
962 B
Diff
From 16037d22ebb2682dc948e6a1fc869635d0c949e3 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 a1c0f48c89..67f3a99860 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);
|