.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@12827 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2019-03-11 11:04:00 +00:00
parent 5f15a14ff3
commit f66ad70f36

View file

@ -600,7 +600,7 @@ Time GetUtcTime()
time_t gmt = time(NULL);
struct tm timer;
struct tm *utc = gmtime_r(&gmt, &timer);
return Time(utc->tm_year + 1900, utc->tm_mon + 1, utc->tm_mday,
return Time(utc->tm_year + 1900, utc->tm_mon + 1, utc->tm_mday,
utc->tm_hour, utc->tm_min, utc->tm_sec);
}