diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-10 20:08:26 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-10 20:08:26 (GMT) |
commit | abd143b23bf05cb86d3d2da3ad977c6873b978d4 (patch) | |
tree | ad910ece2d324aa6f98d6cac831c1cac810d389b /Modules | |
parent | 6d88fa5c05cbe4c41ec9afa05ac6b216667341cb (diff) | |
download | cpython-abd143b23bf05cb86d3d2da3ad977c6873b978d4.zip cpython-abd143b23bf05cb86d3d2da3ad977c6873b978d4.tar.gz cpython-abd143b23bf05cb86d3d2da3ad977c6873b978d4.tar.bz2 |
#28067: Fixed a typo.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_datetimemodule.c | 2 |
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; } |