diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/interpreteridobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/interpreteridobject.c b/Objects/interpreteridobject.c index a250293..39bde97 100644 --- a/Objects/interpreteridobject.c +++ b/Objects/interpreteridobject.c @@ -270,7 +270,7 @@ _PyInterpreterState_GetIDObject(PyInterpreterState *interp) if (_PyInterpreterState_IDInitref(interp) != 0) { return NULL; }; - PY_INT64_T id = PyInterpreterState_GetID(interp); + int64_t id = PyInterpreterState_GetID(interp); if (id < 0) { return NULL; } |