From: Guido van Rossum Date: Tue, 10 Sep 1991 14:55:58 +0000 (+0000) Subject: getlonglongargs --> getlonglongarg X-Git-Tag: v0.9.8~812 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18a372f04ca926e3d0341fadbf33187b3c81cd13;p=thirdparty%2FPython%2Fcpython.git getlonglongargs --> getlonglongarg --- diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 143f6971d7ee..14266a7b3d37 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;