diff options
Diffstat (limited to 'libc/stdio/stdio.cpp')
-rw-r--r-- | libc/stdio/stdio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/stdio.cpp b/libc/stdio/stdio.cpp index 46d717a71..b4b2a3685 100644 --- a/libc/stdio/stdio.cpp +++ b/libc/stdio/stdio.cpp @@ -581,7 +581,7 @@ __strong_alias(fseek, fseeko); int fseeko64(FILE* fp, off64_t offset, int whence) { CHECK_FP(fp); - return __fseeko64(fp, offset, whence, 8*sizeof(off_t)); + return __fseeko64(fp, offset, whence, 8*sizeof(off64_t)); } int fsetpos(FILE* fp, const fpos_t* pos) { |