From 18a372f04ca926e3d0341fadbf33187b3c81cd13 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 10 Sep 1991 14:55:58 +0000 Subject: getlonglongargs --> getlonglongarg --- Objects/fileobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12