8000 fix after rebase · python/cpython@22db5e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 22db5e6

Browse files
committed
fix after rebase
1 parent c8476b3 commit 22db5e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/timemodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1787,8 +1787,8 @@ time_exec(PyObject *module)
17871787
}
17881788
#endif
17891789
#ifdef CLOCK_TAI
1790-
if (PyModule_AddIntMacro(m, CLOCK_TAI) < 0) {
1791-
goto error;
1790+
if (PyModule_AddIntMacro(module, CLOCK_TAI) < 0) {
1791+
return -1;
17921792
}
17931793
#endif
17941794
#ifdef CLOCK_UPTIME

0 commit comments

Comments
 (0)
0