Commit 716a74ea authored by Victor Stinner's avatar Victor Stinner

Issue #23001: Fix typo

parent 53c3fb18
...@@ -491,7 +491,7 @@ oss_writeall(oss_audio_t *self, PyObject *args) ...@@ -491,7 +491,7 @@ oss_writeall(oss_audio_t *self, PyObject *args)
return PyErr_SetFromErrno(PyExc_IOError); return PyErr_SetFromErrno(PyExc_IOError);
} }
rv = _Py_write(self->fd, , cp, Py_MIN(size, INT_MAX)); rv = _Py_write(self->fd, cp, Py_MIN(size, INT_MAX));
if (rv == -1) { if (rv == -1) {
/* buffer is full, try again */ /* buffer is full, try again */
if (errno == EAGAIN) { if (errno == EAGAIN) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment