]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
getlonglongargs --> getlonglongarg
authorGuido van Rossum <guido@python.org>
Tue, 10 Sep 1991 14:55:58 +0000 (14:55 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 10 Sep 1991 14:55:58 +0000 (14:55 +0000)
Objects/fileobject.c

index 143f6971d7eef9557575cfb3433c23f34abc521b..14266a7b3d37377b4361721e515b183b6242a740 100644 (file)
@@ -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;