Skip to content

Commit

Permalink
replace tab with space
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBjoel2 committed Feb 7, 2024
1 parent abd3199 commit 4d7b9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class ProgressUpdate
const auto speed = (timePassedSeconds.count() == 0 ? 0 : currentTasks/timePassedSeconds.count());
const auto secondsLeft = (speed == 0 ? 0 : (m_TotalTasks-currentTasks)/speed);

std::cout << '[' << currentTasks << '/' << m_TotalTasks << "]\t"
std::cout << '[' << currentTasks << '/' << m_TotalTasks << "] "
<< std::setw(2) << std::setfill('0') << secondsLeft/3600 << ':'
<< std::setw(2) << std::setfill('0') << secondsLeft%3600/60 << ':'
<< std::setw(2) << std::setfill('0') << secondsLeft%60 << " left" << std::endl;
Expand Down

0 comments on commit 4d7b9a1

Please sign in to comment.