Skip to content

Commit

Permalink
Merge pull request #4622 from ArqamFarooqui110719/issue/4621
Browse files Browse the repository at this point in the history
corrected the typo in globals.cpp file
  • Loading branch information
fgalan authored Oct 8, 2024
2 parents f89231b + 47d2c78 commit d3e1fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/common/globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ double parse8601Time(const std::string& ss)
const int minMonth = 0;
const int maxMonth = 11;
const int minDay = 1;
const int maxDay = daysInMonth(y, time.tm_mon);;
const int maxDay = daysInMonth(y, time.tm_mon);
const int minHour = 0;
const int maxHour = 23;
const int minMinute = 0;
Expand Down

0 comments on commit d3e1fc1

Please sign in to comment.