Browse Source

Add unused third arg for the benefit of Valgrind.

Stefan Krah 13 years ago
parent
commit
49d0479357
  1. 2
      Python/fileutils.c

2
Python/fileutils.c

@ -675,7 +675,7 @@ set_inheritable(int fd, int inheritable, int raise, int *atomic_flag_works)
request = FIONCLEX;
else
request = FIOCLEX;
err = ioctl(fd, request);
err = ioctl(fd, request, NULL);
if (err) {
if (raise)
PyErr_SetFromErrno(PyExc_OSError);

Loading…
Cancel
Save