summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-04 10:38:57 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-04 10:38:57 +0000
commitde90964bc08a59a8a97b552a55990b66863c5f46 (patch)
tree9c6917aa421bedd05391dc5ecebe846478b30379 /osdep
parente6f1426c8e811674af52aa4a78f8cd599ce1bf81 (diff)
downloadmpv-de90964bc08a59a8a97b552a55990b66863c5f46.tar.bz2
mpv-de90964bc08a59a8a97b552a55990b66863c5f46.tar.xz
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
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;