diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-07-30 15:47:17 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-07-30 15:47:17 +0000 |
commit | 0ce80b61cbc7d6c79a82387fa5aab5d4c1e2d3aa (patch) | |
tree | 7d754daa43b35572c8ef5ae375450ea9b3aa1c5d /stream | |
parent | aac28cfe4c0029c7908b5c9c2c50f0d273dc1a1c (diff) |
big 10L of r9888 located: passed fd instead of pointer to sun_vcd_read
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23939 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/vcd_read.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/vcd_read.h b/stream/vcd_read.h index 7cd4218eff..9c7bdc6a3c 100644 --- a/stream/vcd_read.h +++ b/stream/vcd_read.h @@ -127,7 +127,7 @@ static int vcd_read(mp_vcd_priv_t* vcd,char *mem){ #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 |