#28067: Fixed a typo.
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 *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;
 }