From 9de65b09efb8c4171b992c6fc4755b7c1ac75ba0 Mon Sep 17 00:00:00 2001 From: profi200 Date: Thu, 7 Jan 2016 16:10:21 +0100 Subject: [PATCH] Fix gcc compatibility. --- ctrtool/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctrtool/utils.h b/ctrtool/utils.h index 1d5eac8..93bf219 100644 --- a/ctrtool/utils.h +++ b/ctrtool/utils.h @@ -47,7 +47,7 @@ inline int fseeko64(FILE *__stream, long long __off, int __whence) return _fseeki64(__stream, __off, __whence); } #else -extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence); +extern int fseeko64 (FILE *__stream, off64_t __off, int __whence); #endif #ifdef __cplusplus