summaryrefslogtreecommitdiffstats
path: root/Python/flowgraph.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/flowgraph.c')
-rw-r--r--Python/flowgraph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/flowgraph.c b/Python/flowgraph.c
index e620e7c..55b871d 100644
--- a/Python/flowgraph.c
+++ b/Python/flowgraph.c
@@ -2412,13 +2412,13 @@ build_cellfixedoffsets(_PyCompile_CodeUnitMetadata *umd)
continue;
}
- int argoffset = _PyLong_AsInt(varindex);
+ int argoffset = PyLong_AsInt(varindex);
Py_DECREF(varindex);
if (argoffset == -1 && PyErr_Occurred()) {
goto error;
}
- int oldindex = _PyLong_AsInt(cellindex);
+ int oldindex = PyLong_AsInt(cellindex);
if (oldindex == -1 && PyErr_Occurred()) {
goto error;
}