[Python-checkins] cpython: Issue #23001: Fix typo

victor.stinner python-checkins at python.org
Fri Mar 20 10:24:33 CET 2015


https://hg.python.org/cpython/rev/11548e1ac920
changeset:   95086:11548e1ac920
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Mar 20 10:24:18 2015 +0100
summary:
  Issue #23001: Fix typo

files:
  Modules/ossaudiodev.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c
--- a/Modules/ossaudiodev.c
+++ b/Modules/ossaudiodev.c
@@ -491,7 +491,7 @@
             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) {

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list