Skip to content

Commit

Permalink
idk what to do
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroIntensity committed Aug 19, 2023
1 parent 84a370c commit 06f4564
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/view/backport.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static PyObject* _PyObject_VectorcallBackport(PyObject* obj,
size_t nargsf, PyObject* kwargs) {
PyObject* tuple = PyTuple_New(nargsf);
if (!tuple) return NULL;
for (int i = 0; i < nargsf; i++) {
for (size_t i = 0; i < nargsf; i++) {
Py_INCREF(args[i]);
PyTuple_SET_ITEM(
tuple,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Extension(
"_view",
glob("src/_view/*.c"),
include_dirs=["./include"],
include_dirs=["include"],
)
],
)

0 comments on commit 06f4564

Please sign in to comment.