summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-10 20:08:26 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2016-09-10 20:08:26 (GMT)
commitabd143b23bf05cb86d3d2da3ad977c6873b978d4 (patch)
treead910ece2d324aa6f98d6cac831c1cac810d389b /Modules
parent6d88fa5c05cbe4c41ec9afa05ac6b216667341cb (diff)
downloadcpython-abd143b23bf05cb86d3d2da3ad977c6873b978d4.zip
cpython-abd143b23bf05cb86d3d2da3ad977c6873b978d4.tar.gz
cpython-abd143b23bf05cb86d3d2da3ad977c6873b978d4.tar.bz2
#28067: Fixed a typo.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_datetimemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c
index 99556c3..892772f 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;
}