From 387e48a86805835bf66f248458fa9b76c5408526 Mon Sep 17 00:00:00 2001 From: Seddigirl Date: Tue, 8 May 2018 00:02:14 +0200 Subject: [PATCH] Fix missing underscore --- utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.h b/utils.h index bdb1ab9..c34e964 100644 --- a/utils.h +++ b/utils.h @@ -55,7 +55,7 @@ inline int fseeko64(FILE *__stream, long long __off, int __whence) // OS X file I/O is 64bit #define fseeko64 fseek #elif __linux__ || __WIN32 - extern int fseeko64 (FILE *__stream, _off64_t __off, int __whence); + extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence); #else /* fseeko is guaranteed by POSIX, hopefully the OS made their off_t definition 64-bit; * known sane on FreeBSD and OpenBSD.