summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/pystate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c
index f964f49..e9c4c7d 100644
--- a/Python/pystate.c
+++ b/Python/pystate.c
@@ -826,7 +826,7 @@ _PyThreadState_Delete(_PyRuntimeState *runtime, PyThreadState *tstate)
void
PyThreadState_Delete(PyThreadState *tstate)
{
- return _PyThreadState_Delete(&_PyRuntime, tstate);
+ _PyThreadState_Delete(&_PyRuntime, tstate);
}