From 6ca7befb55767784a447a5daddd09e387ec92bd3 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 26 Mar 2015 11:03:56 -0700 Subject: [PATCH] util/logging: fix build on 32-bit arch Signed-off-by: Sage Weil --- util/logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/logging.cc b/util/logging.cc index e2d1fb34..c8cd1217 100644 --- a/util/logging.cc +++ b/util/logging.cc @@ -38,7 +38,7 @@ int AppendHumanMicros(uint64_t micros, char* output, int len) { } else if (micros < 1000000l * 60) { return snprintf(output, len, "%.3lf sec", static_cast(micros) / 1000000); - } else if (micros < 1000000l * 60 * 60) { + } else if (micros < 1000000ll * 60 * 60) { return snprintf(output, len, "%02" PRIu64 ":%05.3f M:S", micros / 1000000 / 60, static_cast(micros % 60000000) / 1000000); -- 2.47.3