From 085c2a88d44ebac41c64c32ee6b796ff64e5331f Mon Sep 17 00:00:00 2001 From: Mole Shang <135e2@135e2.dev> Date: Thu, 10 Aug 2023 22:48:37 +0800 Subject: status: support large file sizes on 64bit systems Convert all unsigned long nums to unsigned long long in order to let the UI safely display sizes >= 4GB --- src/utils/size_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/size_info.c') diff --git a/src/utils/size_info.c b/src/utils/size_info.c index 6b238bb..b846ae6 100644 --- a/src/utils/size_info.c +++ b/src/utils/size_info.c @@ -2,7 +2,7 @@ static const char *size_unit_map[] = {"B", "KB", "MB", "GB"}; -size_info_t num2sizeinfo(const unsigned long n) { +size_info_t num2sizeinfo(const unsigned long long n) { size_info_t size_info = {0}; long double tmp = (long double)n; if ((unsigned long)tmp / 1024 == 0) { -- cgit v1.2.3