Kaydet (Commit) abd143b2 authored tarafından Alexander Belopolsky's avatar Alexander Belopolsky

#28067: Fixed a typo.

üst 6d88fa5c
...@@ -17,7 +17,7 @@ static struct tm *localtime_r(const time_t *timep, struct tm *result) ...@@ -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;
} }
......
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