Skip to content

Commit ffb6284

Browse files
authored
Rename min and sec to minute and second
1 parent 166705f commit ffb6284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/Common/Logger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ String Logger::getDateTime() {
263263
<< std::setw(Space) << currentDateTime.month << "."
264264
<< std::setw(Space * 2) << currentDateTime.day << " "
265265
<< std::setw(Space) << currentDateTime.hour << ":"
266-
<< std::setw(Space) << currentDateTime.min << ":"
267-
<< std::setw(Space) << currentDateTime.sec;
266+
<< std::setw(Space) << currentDateTime.minute << ":"
267+
<< std::setw(Space) << currentDateTime.second;
268268
const std::string tmp(stream.str());
269269
String dateTime(tmp.c_str(), tmp.size());
270270
return dateTime;

0 commit comments

Comments
 (0)