forked from organicmaps/organicmaps
Correctly print invalid timestamp.
This commit is contained in:
parent
379236dfc6
commit
deff0f5c25
1 changed files with 3 additions and 0 deletions
|
@ -64,6 +64,9 @@ uint32_t TodayAsYYMMDD()
|
|||
|
||||
string TimestampToString(time_t time)
|
||||
{
|
||||
if (time == INVALID_TIME_STAMP)
|
||||
return string("INVALID_TIME_STAMP");
|
||||
|
||||
tm * t = gmtime(&time);
|
||||
char buf[21] = { 0 };
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
|
|
Loading…
Add table
Reference in a new issue