Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/UI/Console/List.cpp')
-rwxr-xr-x7zip/UI/Console/List.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/7zip/UI/Console/List.cpp b/7zip/UI/Console/List.cpp
index 6744fb82..6001e114 100755
--- a/7zip/UI/Console/List.cpp
+++ b/7zip/UI/Console/List.cpp
@@ -130,7 +130,7 @@ void PrintSpaces(int numSpaces)
void PrintString(EAdjustment adjustment, int width, const UString &textString)
{
const int numSpaces = width - textString.Length();
- int numLeftSpaces;
+ int numLeftSpaces = 0;
switch (adjustment)
{
case kLeft: