From 01779e6c6c2c876a9e137d51ee1ce6a8062ea893 Mon Sep 17 00:00:00 2001 From: Iraj Jamali Date: Mon, 17 Dec 2018 11:23:59 +0530 Subject: fix 32-bit-build-smoke warnings fixes: bz#1622665 Change-Id: I777d67b1b62c284c62a02277238ad7538eef001e Signed-off-by: Iraj Jamali --- libglusterfs/src/common-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libglusterfs/src/common-utils.c') diff --git a/libglusterfs/src/common-utils.c b/libglusterfs/src/common-utils.c index b8c3e2de126..6cefb2a439b 100644 --- a/libglusterfs/src/common-utils.c +++ b/libglusterfs/src/common-utils.c @@ -1702,7 +1702,7 @@ gf_uint64_2human_readable(uint64_t n) if (ret < 0) goto err; } else { - ret = gf_asprintf(&str, "%luBytes", n); + ret = gf_asprintf(&str, "%" PRIu64 "Bytes", n); if (ret < 0) goto err; } -- cgit