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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abd143b23bf05cb86d3d2da3ad977c6873b978d4;p=thirdparty%2FPython%2Fcpython.git #28067: Fixed a typo. --- diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c index 99556c3fe7fe..892772ffabaf 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; }