commit | 18a372f04ca926e3d0341fadbf33187b3c81cd13 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Sep 10 14:55:58 1991 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Sep 10 14:55:58 1991 +0000 |
tree | 1464252e4101b5d8c7e6f9d11e729ec03084642c | |
parent | 188f832ae65f8451b269b778cad6c11ea39c70cf [diff] [blame] |
getlonglongargs --> getlonglongarg
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 @@ whence = 0; /* SEEK_SET */ } else { - if (!getlonglongargs(args, &offset, &whence)) + if (!getlonglongarg(args, &offset, &whence)) return NULL; } errno = 0;