From de90964bc08a59a8a97b552a55990b66863c5f46 Mon Sep 17 00:00:00 2001 From: faust3 Date: Sun, 4 Apr 2004 10:38:57 +0000 Subject: [PATCH] 10l for the orignial author and 1000l for me for commiting a broken workaround git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12116 b3059339-0415-0410-9bf9-f77b7e298cf2 --- osdep/fseeko.c | 4 ++-- 1 file 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;