summaryrefslogtreecommitdiff
path: root/Modules/fcntlmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-11-10 10:42:26 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-11-10 10:42:26 +0200
commitd915b0847dd5e43b33cf0683bfc473e904572a56 (patch)
treedc2e6417de51d740f2cbde49b8a3156e15143069 /Modules/fcntlmodule.c
parent86e9b6b16424ddbdd1a4a393cd295e95835b7ef2 (diff)
downloadcpython-git-d915b0847dd5e43b33cf0683bfc473e904572a56.tar.gz
Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian
platforms.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r--Modules/fcntlmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index cf0ac19976..9325940965 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;