Skip to content

Commit d1ac2d4

Browse files
committed
nit
1 parent b98f853 commit d1ac2d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/listobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ free_list_items(PyObject** items, bool use_qsbr)
9090
static int
9191
list_resize(PyListObject *self, Py_ssize_t newsize)
9292
{
93-
size_t new_allocated;
93+
Py_ssize_t new_allocated;
9494
Py_ssize_t allocated = self->allocated;
9595

9696
/* Bypass realloc() when a previous overallocation is large enough

0 commit comments

Comments
 (0)