summaryrefslogtreecommitdiff
path: root/src/vdr/input_vdr.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-09 11:44:00 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-09 11:44:00 +0200
commit4d7e574abefe9cd15c04cf0145faf55c9e282e83 (patch)
tree2482c29294c40da5d58d61fac8d9d774a7050d04 /src/vdr/input_vdr.c
parent72c64cd5c76febda45d95452276e11d60477103e (diff)
downloadxine-lib-4d7e574abefe9cd15c04cf0145faf55c9e282e83.tar.gz
xine-lib-4d7e574abefe9cd15c04cf0145faf55c9e282e83.tar.bz2
Convert all input plugins to use void * as type for the buf parameter of read() function, and declare a new buf variable in the function as needed.
Diffstat (limited to 'src/vdr/input_vdr.c')
-rw-r--r--src/vdr/input_vdr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vdr/input_vdr.c b/src/vdr/input_vdr.c
index 1f82def28..97da8e834 100644
--- a/src/vdr/input_vdr.c
+++ b/src/vdr/input_vdr.c
@@ -1308,9 +1308,10 @@ static int internal_write_event_play_external(vdr_input_plugin_t *this, uint32_t
}
static off_t vdr_plugin_read(input_plugin_t *this_gen,
- char *buf, off_t len)
+ void *buf_gen, off_t len)
{
vdr_input_plugin_t *this = (vdr_input_plugin_t *) this_gen;
+ char *buf = (char *)buf_gen;
off_t n, total;
#ifdef LOG_READ
lprintf ("reading %lld bytes...\n", len);