1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 00:11:17 +02:00

Factor out common showBytes()

This commit is contained in:
Eelco Dolstra 2020-10-06 10:40:49 +02:00
parent d0bb544128
commit 6691256e79
4 changed files with 16 additions and 18 deletions

View file

@ -1641,4 +1641,11 @@ AutoCloseFD createUnixDomainSocket(const Path & path, mode_t mode)
return fdSocket;
}
string showBytes(uint64_t bytes)
{
return fmt("%.2f MiB", bytes / (1024.0 * 1024.0));
}
}