Correctly print invalid timestamp.

This commit is contained in:
Alex Zolotarev 2016-01-26 13:21:39 +03:00 committed by Sergey Yershov
parent 379236dfc6
commit deff0f5c25

View file

@ -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