diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-10 08:42:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-10 08:42:26 (GMT) |
commit | d915b0847dd5e43b33cf0683bfc473e904572a56 (patch) | |
tree | dc2e6417de51d740f2cbde49b8a3156e15143069 /Modules/fcntlmodule.c | |
parent | 86e9b6b16424ddbdd1a4a393cd295e95835b7ef2 (diff) | |
download | cpython-d915b0847dd5e43b33cf0683bfc473e904572a56.zip cpython-d915b0847dd5e43b33cf0683bfc473e904572a56.tar.gz cpython-d915b0847dd5e43b33cf0683bfc473e904572a56.tar.bz2 |
Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian
platforms.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r-- | Modules/fcntlmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index cf0ac19..9325940 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -34,7 +34,7 @@ fcntl_fcntl(PyObject *self, PyObject *args) { int fd; int code; - long arg; + int arg; int ret; char *str; Py_ssize_t len; @@ -61,7 +61,7 @@ fcntl_fcntl(PyObject *self, PyObject *args) PyErr_Clear(); arg = 0; if (!PyArg_ParseTuple(args, - "O&i|l;fcntl requires a file or file descriptor," + "O&i|I;fcntl requires a file or file descriptor," " an integer and optionally a third integer or a string", conv_descriptor, &fd, &code, &arg)) { return NULL; |