diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-10 16:08:26 -0400 |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2016-09-10 16:08:26 -0400 |
commit | abd143b23bf05cb86d3d2da3ad977c6873b978d4 (patch) | |
tree | ad910ece2d324aa6f98d6cac831c1cac810d389b | |
parent | 6d88fa5c05cbe4c41ec9afa05ac6b216667341cb (diff) | |
download | cpython-git-abd143b23bf05cb86d3d2da3ad977c6873b978d4.tar.gz |
#28067: Fixed a typo.
-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 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; } |