diff --git a/src/gui/dboxinfo.cpp b/src/gui/dboxinfo.cpp index 08bad63bb..b7d90ca5a 100644 --- a/src/gui/dboxinfo.cpp +++ b/src/gui/dboxinfo.cpp @@ -181,10 +181,10 @@ static std::string bytes2string(uint64_t bytes, bool binary) char result[80]; if (b < base) - snprintf(result, sizeof(result), "%d%s%02d ", (int)b, g_Locale->getText(LOCALE_UNIT_DECIMAL), - (int)((bytes - b * factor) * 100 / factor)); + snprintf(result, sizeof(result), "%llu%s%02llu ", b, g_Locale->getText(LOCALE_UNIT_DECIMAL), + (bytes - b * factor) * 100 / factor); else // no need for fractions for larger numbers - snprintf(result, sizeof(result), "%d ", (int)bytes); + snprintf(result, sizeof(result), "%llu ", b); std::string res(result); if (*unit) {