Skip to content

Commit a26fcc3

Browse files
committed
WTF typo
1 parent 81cc54b commit a26fcc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎Python/ceval.c‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,9 +471,9 @@ _Py_InitializeRecursionLimits(PyThreadState *tstate)
471471
# ifdef _Py_THREAD_SANITIZER
472472
// Thread sanitizer crashes if we use a bit more than half the stack.
473473
# if _Py_STACK_GROWS_DOWN
474-
base += stacksize / 2;
474+
base += stack_size / 2;
475475
# else
476-
top -= stacksize / 2;
476+
top -= stack_size / 2;
477477
# endif
478478
# endif
479479
# if _Py_STACK_GROWS_DOWN

0 commit comments

Comments
 (0)