[Mplayer-cvslog] CVS: main/osdep fseeko.c,1.1,1.2
Sascha Sommer CVS
syncmail at mplayerhq.hu
Sun Apr 4 12:38:59 CEST 2004
CVS change done by Sascha Sommer CVS
Update of /cvsroot/mplayer/main/osdep
In directory mail:/var2/tmp/cvs-serv3358/osdep
Modified Files:
fseeko.c
Log Message:
10l for the orignial author and 1000l for me for commiting a broken workaround
Index: fseeko.c
===================================================================
RCS file: /cvsroot/mplayer/main/osdep/fseeko.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fseeko.c 26 Mar 2004 15:21:44 -0000 1.1
+++ fseeko.c 4 Apr 2004 10:38:57 -0000 1.2
@@ -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 @@
off_t
ftello(FILE *stream)
{
- off_t floc;
+ fpos_t floc;
if (fgetpos(stream, &floc) != 0)
return -1;
More information about the MPlayer-cvslog
mailing list