diff options
Diffstat (limited to 'Objects/fileobject.c')
-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; |