diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2011-08-02 13:05:11 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2011-08-02 13:05:11 +0000 |
commit | 8d812296011b75f9bd787ff9ebe574a4265a11c9 (patch) | |
tree | fc93270e32c02813c3eb677abb486e31d9d2e50a /Build/source/texk/kpathsea/win32lib.c | |
parent | 9a634e078306d7a674684828beaabdc6f14c37cc (diff) |
update win32lib.[ch]
git-svn-id: svn://tug.org/texlive/trunk@23315 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/win32lib.c')
-rw-r--r-- | Build/source/texk/kpathsea/win32lib.c | 4 |
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); |