summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/xfseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea/xfseek.c')
-rw-r--r--Build/source/texk/kpathsea/xfseek.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/xfseek.c b/Build/source/texk/kpathsea/xfseek.c
index 3e4d0b93b34..22ba8978c4a 100644
--- a/Build/source/texk/kpathsea/xfseek.c
+++ b/Build/source/texk/kpathsea/xfseek.c
@@ -23,8 +23,8 @@
void
-xfseek P4C(FILE *, f, off_t, offset, int, wherefrom, string, filename)
+xfseek P4C(FILE *, f, long, offset, int, wherefrom, string, filename)
{
- if (fseeko(f, offset, wherefrom) < 0)
+ if (fseek(f, offset, wherefrom) < 0)
FATAL_PERROR(filename);
}