From: Hye-Shik Chang Date: Thu, 28 Jul 2005 05:57:19 +0000 (+0000) Subject: Fix a typo. (found by Jong-uk Kim) X-Git-Tag: v2.5a0~1563 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97bb8ad3949262d8d1a703ad8d2e514c1c85b433;p=thirdparty%2FPython%2Fcpython.git Fix a typo. (found by Jong-uk Kim) --- diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index eb5189ef4130..624019dfa52a 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -173,7 +173,7 @@ fcntl_ioctl(PyObject *self, PyObject *args) arg = 0; if (!PyArg_ParseTuple(args, "O&I|i;ioctl requires a file or file descriptor," - " an integer and optionally a integer or buffer argument", + " an integer and optionally an integer or buffer argument", conv_descriptor, &fd, &code, &arg)) { return NULL; }