[MPlayer-cvslog] r23939 - trunk/stream/vcd_read.h
reimar
subversion at mplayerhq.hu
Mon Jul 30 17:47:17 CEST 2007
Author: reimar
Date: Mon Jul 30 17:47:17 2007
New Revision: 23939
Log:
big 10L of r9888 located: passed fd instead of pointer to sun_vcd_read
Modified:
trunk/stream/vcd_read.h
Modified: trunk/stream/vcd_read.h
==============================================================================
--- trunk/stream/vcd_read.h (original)
+++ trunk/stream/vcd_read.h Mon Jul 30 17:47:17 2007
@@ -127,7 +127,7 @@ static int vcd_read(mp_vcd_priv_t* vcd,c
#elif defined(sun)
{
int offset;
- if (sun_vcd_read(vcd->fd, &offset) <= 0) return 0;
+ if (sun_vcd_read(vcd, &offset) <= 0) return 0;
memcpy(mem,&vcd->buf[offset],VCD_SECTOR_DATA);
}
#endif
More information about the MPlayer-cvslog
mailing list