summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/interpreteridobject.c2
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;
}