diff options
author | Guido van Rossum <guido@python.org> | 1991-09-10 14:55:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-09-10 14:55:58 (GMT) |
commit | 18a372f04ca926e3d0341fadbf33187b3c81cd13 (patch) | |
tree | 1464252e4101b5d8c7e6f9d11e729ec03084642c /Objects | |
parent | 188f832ae65f8451b269b778cad6c11ea39c70cf (diff) | |
download | cpython-18a372f04ca926e3d0341fadbf33187b3c81cd13.zip cpython-18a372f04ca926e3d0341fadbf33187b3c81cd13.tar.gz cpython-18a372f04ca926e3d0341fadbf33187b3c81cd13.tar.bz2 |
getlonglongargs --> getlonglongarg
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/fileobject.c | 2 |
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; |