Skip to content

Commit

Permalink
Change posixmodule.c
Browse files Browse the repository at this point in the history
  • Loading branch information
rruuaanng committed Sep 24, 2024
1 parent 7e77c2b commit ebb5388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -4228,7 +4228,7 @@ Return the maximum number of files a process can have open.
static PyObject *
os_getdtablesize_impl(PyObject *module)
{
PyObject *size;
int size;

size = getdtablesize();
return PyLong_FromLong(size);
Expand Down

0 comments on commit ebb5388

Please # to comment.