diff options
author | David Foerster <david.foerster@informatik.hu-berlin.de> | 2016-05-10 22:24:06 +0200 |
---|---|---|
committer | David Foerster <david.foerster@informatik.hu-berlin.de> | 2016-05-10 22:24:06 +0200 |
commit | 5f47d8b6f11cdb3c4c2f43e04e5acfc6ffcb3035 (patch) | |
tree | b1afa687c97fbf5e1ba2c92c5a10479ae5f832f5 /src/Format/Tcformat.c | |
parent | 11716ed2dacbb104f8f59867fe66f2c0a6984291 (diff) | |
download | VeraCrypt-5f47d8b6f11cdb3c4c2f43e04e5acfc6ffcb3035.tar.gz VeraCrypt-5f47d8b6f11cdb3c4c2f43e04e5acfc6ffcb3035.zip |
Fix space before tab
Diffstat (limited to 'src/Format/Tcformat.c')
-rw-r--r-- | src/Format/Tcformat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index bb479395..40c17d66 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -3200,7 +3200,7 @@ __int64 PrintFreeSpace (HWND hwndTextBox, wchar_t *lpszDrive, PLARGE_INTEGER lDi else nResourceString = "DISK_FREE_GB"; } - else + else { if (bHiddenVol && !bHiddenVolHost) // If it's a hidden volume nResourceString = "MAX_HIDVOL_SIZE_TB"; @@ -9476,7 +9476,7 @@ int ScanVolClusterBitmap (HWND hwndDlg, int *driveNo, __int64 nbrClusters, __int goto vcmf_error; } - bufLen = (DWORD) (nbrClusters / 8 + 2 * sizeof(LARGE_INTEGER)); + bufLen = (DWORD) (nbrClusters / 8 + 2 * sizeof(LARGE_INTEGER)); bufLen += 100000 + bufLen/10; // Add reserve lpOutBuffer = (PVOLUME_BITMAP_BUFFER) malloc (bufLen); |