diff options
author | corvid <devnull@localhost> | 2014-07-30 02:46:27 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-07-30 02:46:27 +0000 |
commit | d67198aab4bee4f8ba4fa5e8a11cb14b3e23f1c5 (patch) | |
tree | 2e825cc1e82df0d45f3b168000017a89c1a2b487 /dpi | |
parent | 006d52237bd738eb49f082c7dec30e036a5fb466 (diff) |
KB
Diffstat (limited to 'dpi')
-rw-r--r-- | dpi/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -346,10 +346,10 @@ static void File_info2html(ClientInfo *client, FileInfo *finfo, int n) sizeunits = "bytes"; } else if (finfo->size / 1024 <= 9999) { size = finfo->size / 1024 + (finfo->size % 1024 >= 1024 / 2); - sizeunits = "Kb"; + sizeunits = "KB"; } else { size = finfo->size / 1048576 + (finfo->size % 1048576 >= 1048576 / 2); - sizeunits = "Mb"; + sizeunits = "MB"; } /* we could note if it's a symlink... */ |