#28067: Fixed a typo.

This commit is contained in:
Alexander Belopolsky 2016-09-10 16:08:26 -04:00
parent 6d88fa5c05
commit abd143b23b
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ static struct tm *localtime_r(const time_t *timep, struct tm *result)
} }
static struct tm *gmtime_r(const time_t *timep, struct tm *result) static struct tm *gmtime_r(const time_t *timep, struct tm *result)
{ {
if (gmime_s(result, timep) == 0) if (gmtime_s(result, timep) == 0)
return result; return result;
return NULL; return NULL;
} }