From cd29c50ca820a03b9cecb300a84fb884425cb565 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 22 Oct 2010 17:10:49 +0100 Subject: [PATCH] daemon: Use stdint UINT64_C instead of ULL. --- daemon/statvfs.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/daemon/statvfs.c b/daemon/statvfs.c index e71b19a..cf37b96 100644 --- a/daemon/statvfs.c +++ b/daemon/statvfs.c @@ -28,6 +28,7 @@ #include #include #include +#include #ifdef HAVE_SYS_STATVFS_H #include @@ -114,13 +115,13 @@ do_statvfs (const char *path) * the version of Windows. So this code assumes the disk is NTFS * and the version of Windows is >= Win2K. */ - if (total_number_of_bytes < 16ULL * 1024 * 1024 * 1024 * 1024) + if (total_number_of_bytes < UINT64_C(16) * 1024 * 1024 * 1024 * 1024) ret->bsize = 4096; - else if (total_number_of_bytes < 32ULL * 1024 * 1024 * 1024 * 1024) + else if (total_number_of_bytes < UINT64_C(32) * 1024 * 1024 * 1024 * 1024) ret->bsize = 8192; - else if (total_number_of_bytes < 64ULL * 1024 * 1024 * 1024 * 1024) + else if (total_number_of_bytes < UINT64_C(64) * 1024 * 1024 * 1024 * 1024) ret->bsize = 16384; - else if (total_number_of_bytes < 128ULL * 1024 * 1024 * 1024 * 1024) + else if (total_number_of_bytes < UINT64_C(128) * 1024 * 1024 * 1024 * 1024) ret->bsize = 32768; else ret->bsize = 65536; -- 1.8.3.1