diff options
author | Meteor0id <34976212+Meteor0id@users.noreply.github.com> | 2019-11-02 01:06:02 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-11-02 01:06:02 +0100 |
commit | bb123bb3e8719d012884d144d326e5e8c8c15786 (patch) | |
tree | 483b58eb2c91f4b53bb841676b6a1523221318d1 /src/Boot/Windows | |
parent | 3ad7d8adb73b7fa70957c886972154ff17db740b (diff) | |
download | VeraCrypt-bb123bb3e8719d012884d144d326e5e8c8c15786.tar.gz VeraCrypt-bb123bb3e8719d012884d144d326e5e8c8c15786.zip |
Start following IEEE 1541 agreed naming of bytes (#532)
* Start following IEEE 1541 agreed naming of bytes
This standard exists to prevent any confusion about the actual number of bytes. It has been agreed on by experts and is being used more widespead these day. Let's start properly naming the number of bytes, which is absolutely important in disk encryption software.
* Update LanguageStrings.cpp
* Update UserInterface.cpp
* kibibyte instead of kilobyte
* kibibyte instead of kilobyte
* MiB instead of MB
* undo accidental deletions
Odd indeed that two random lines were deleted in a previous commit. Probably happened when using a keyboard shortcut while editing the file. This fixes the issue.
* Mb to Mib
Diffstat (limited to 'src/Boot/Windows')
-rw-r--r-- | src/Boot/Windows/BootDiskIo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Boot/Windows/BootDiskIo.cpp b/src/Boot/Windows/BootDiskIo.cpp index ea808dd4..583840e0 100644 --- a/src/Boot/Windows/BootDiskIo.cpp +++ b/src/Boot/Windows/BootDiskIo.cpp @@ -105,7 +105,7 @@ void Print (const ChsAddress &chs) void PrintSectorCountInMB (const uint64 §orCount) { - Print (sectorCount >> (TC_LB_SIZE_BIT_SHIFT_DIVISOR + 2)); Print (" MB "); + Print (sectorCount >> (TC_LB_SIZE_BIT_SHIFT_DIVISOR + 2)); Print (" MiB "); } |