mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
dboxinfo: fix format strings for uint64_t
This commit is contained in:
committed by
svenhoefer
parent
c9a3b34810
commit
ecf430ba97
@@ -181,10 +181,10 @@ static std::string bytes2string(uint64_t bytes, bool binary)
|
|||||||
char result[80];
|
char result[80];
|
||||||
|
|
||||||
if (b < base)
|
if (b < base)
|
||||||
snprintf(result, sizeof(result), "%llu%s%02llu ", b, g_Locale->getText(LOCALE_UNIT_DECIMAL),
|
snprintf(result, sizeof(result), "%" PRIu64 "%s%02" PRIu64 " ", b, g_Locale->getText(LOCALE_UNIT_DECIMAL),
|
||||||
(bytes - b * factor) * 100 / factor);
|
(bytes - b * factor) * 100 / factor);
|
||||||
else // no need for fractions for larger numbers
|
else // no need for fractions for larger numbers
|
||||||
snprintf(result, sizeof(result), "%llu ", b);
|
snprintf(result, sizeof(result), "%" PRIu64 " ", b);
|
||||||
|
|
||||||
std::string res(result);
|
std::string res(result);
|
||||||
if (*unit) {
|
if (*unit) {
|
||||||
|
Reference in New Issue
Block a user