From abd143b23bf05cb86d3d2da3ad977c6873b978d4 Mon Sep 17 00:00:00 2001 From: Alexander Belopolsky Date: Sat, 10 Sep 2016 16:08:26 -0400 Subject: [PATCH] #28067: Fixed a typo. --- Modules/_datetimemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }