From: Victor Stinner Date: Fri, 20 Mar 2015 09:24:18 +0000 (+0100) Subject: Issue #23001: Fix typo X-Git-Tag: v3.5.0a3~119 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=716a74ea2299ed2e3e0594c14177de0d68e2d4b6;p=python Issue #23001: Fix typo --- diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c index f6ad216f81..3d1f18083d 100644 --- a/Modules/ossaudiodev.c +++ b/Modules/ossaudiodev.c @@ -491,7 +491,7 @@ oss_writeall(oss_audio_t *self, PyObject *args) 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) { /* buffer is full, try again */ if (errno == EAGAIN) {