summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/win32lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea/win32lib.c')
-rw-r--r--Build/source/texk/kpathsea/win32lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/win32lib.c b/Build/source/texk/kpathsea/win32lib.c
index a7321e3b7ab..0ca0367d466 100644
--- a/Build/source/texk/kpathsea/win32lib.c
+++ b/Build/source/texk/kpathsea/win32lib.c
@@ -282,7 +282,7 @@ int __cdecl kpathsea_win32_pclose (kpathsea kpse, FILE *f)
/* large file support */
void
-xfseek64 (FILE *f, __int64 offset, int wherefrom, char *filename)
+xfseek64 (FILE *f, __int64 offset, int wherefrom, const char *filename)
{
fflush(f);
if (_lseeki64(fileno(f), offset, wherefrom) < (__int64)0)
@@ -290,7 +290,7 @@ xfseek64 (FILE *f, __int64 offset, int wherefrom, char *filename)
}
__int64
-xftell64 (FILE *f, char *filename)
+xftell64 (FILE *f, const char *filename)
{
__int64 where;
fflush(f);