Skip to content

Commit

Permalink
Fix bug with estimatedLandingTime
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenAR committed Jun 16, 2021
1 parent fe0e8a5 commit 6d629e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Aman/AmanTimelineView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void AmanTimelineView::drawViafixColorLegend(HDC hdc, std::shared_ptr<AmanTimeli
std::string AmanTimelineView::formatTimestamp(uint32_t unixTime, const char* format) {
std::time_t temp = unixTime;
std::tm* t = std::gmtime(&temp);
static std::stringstream ss;
std::stringstream ss;
ss << std::put_time(t, format);
return ss.str();
}
Expand Down

0 comments on commit 6d629e8

Please sign in to comment.