0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

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
This commit is contained in:
faust3 2004-04-04 10:38:57 +00:00
parent e6f1426c8e
commit de90964bc0

View File

@ -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;