Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Source/CLI/Global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ int global::SetAll(bool Value)
return ReturnValue;
if (int ReturnValue = SetConch(Value))
return ReturnValue;
if (int ReturnValue = (Value?SetCheck(true):SetQuickCheck())) // Never implicitely set no check
if (int ReturnValue = (Value?SetCheck(true):SetQuickCheck())) // Never implicitly set no check
return ReturnValue;
if (int ReturnValue = (Value && SetCheckPadding(Value))) // Never implicitely set no check padding
if (int ReturnValue = (Value && SetCheckPadding(Value))) // Never implicitly set no check padding
return ReturnValue;
if (int ReturnValue = SetAcceptGaps(Value))
return ReturnValue;
Expand Down Expand Up @@ -1072,13 +1072,13 @@ void global::ProgressIndicator_Show()
cerr << setprecision(0) << FileRate;
cerr << " files/s";
}
cerr << " "; // Clean up in case there is less content outputed than the previous time
cerr << " "; // Clean up in case there is less content outputted than the previous time

ProgressIndicator_Value = ProgressIndicator_New;
}
} while (ProgressIndicator_IsEnd.wait_for(Lock, Frequency) == cv_status::timeout && ProgressIndicator_Current != ProgressIndicator_Total);

// Show summary
cerr << '\r';
cerr << " \r"; // Clean up in case there is less content outputed than the previous time
cerr << " \r"; // Clean up in case there is less content outputted than the previous time
}
Loading