Commit 6508d98e authored by Alexander Belopolsky's avatar Alexander Belopolsky

#28067: Fixed a typo.

parent 40afe6e4
......@@ -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)
{
if (gmime_s(result, timep) == 0)
if (gmtime_s(result, timep) == 0)
return result;
return NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment