From: Alexander Belopolsky Date: Sat, 10 Sep 2016 20:08:26 +0000 (-0400) Subject: #28067: Fixed a typo. X-Git-Tag: v3.6.0b1~86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=abd143b23bf05cb86d3d2da3ad977c6873b978d4;p=python #28067: Fixed a typo. --- diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c index 99556c3fe7..892772ffab 100644 --- a/Modules/_datetimemodule.c +++ b/Modules/_datetimemodule.c @@ -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; }