summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-09-10 14:55:58 (GMT)
committerGuido van Rossum <guido@python.org>1991-09-10 14:55:58 (GMT)
commit18a372f04ca926e3d0341fadbf33187b3c81cd13 (patch)
tree1464252e4101b5d8c7e6f9d11e729ec03084642c /Objects
parent188f832ae65f8451b269b778cad6c11ea39c70cf (diff)
downloadcpython-18a372f04ca926e3d0341fadbf33187b3c81cd13.zip
cpython-18a372f04ca926e3d0341fadbf33187b3c81cd13.tar.gz
cpython-18a372f04ca926e3d0341fadbf33187b3c81cd13.tar.bz2
getlonglongargs --> getlonglongarg
Diffstat (limited to 'Objects')
-rw-r--r--Objects/fileobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index 143f697..14266a7 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -191,7 +191,7 @@ file_seek(f, args)
whence = 0; /* SEEK_SET */
}
else {
- if (!getlonglongargs(args, &offset, &whence))
+ if (!getlonglongarg(args, &offset, &whence))
return NULL;
}
errno = 0;