summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
Diffstat (limited to 'osdep')
-rw-r--r--osdep/fseeko.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/fseeko.c b/osdep/fseeko.c
index 14f601575a..0ac11c29a7 100644
--- a/osdep/fseeko.c
+++ b/osdep/fseeko.c
@@ -29,7 +29,7 @@
int
fseeko(FILE *stream, off_t offset, int whence)
{
- off_t floc;
+ fpos_t floc;
struct stat filestat;
switch (whence)
@@ -75,7 +75,7 @@ failure:
off_t
ftello(FILE *stream)
{
- off_t floc;
+ fpos_t floc;
if (fgetpos(stream, &floc) != 0)
return -1;