Commit 7ce47cc2 authored by Hye-Shik Chang's avatar Hye-Shik Chang

Fix a typo. (found by Jong-uk Kim)

parent 0fb380df
...@@ -173,7 +173,7 @@ fcntl_ioctl(PyObject *self, PyObject *args) ...@@ -173,7 +173,7 @@ fcntl_ioctl(PyObject *self, PyObject *args)
arg = 0; arg = 0;
if (!PyArg_ParseTuple(args, if (!PyArg_ParseTuple(args,
"O&I|i;ioctl requires a file or file descriptor," "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)) { conv_descriptor, &fd, &code, &arg)) {
return NULL; return NULL;
} }
......
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