summaryrefslogtreecommitdiff
path: root/src/input/input_gnome_vfs.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/input/input_gnome_vfs.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/input/input_gnome_vfs.c')
-rw-r--r--src/input/input_gnome_vfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c
index 540abd0f4..1fe29fbcd 100644
--- a/src/input/input_gnome_vfs.c
+++ b/src/input/input_gnome_vfs.c
@@ -75,8 +75,9 @@ gnomevfs_plugin_get_capabilities (input_plugin_t *this_gen)
#define SSH_BUFFER_SIZE 256 * 1024
static off_t
-gnomevfs_plugin_read (input_plugin_t *this_gen, char *buf, off_t len)
+gnomevfs_plugin_read (input_plugin_t *this_gen, void *buf_gen, off_t len)
{
+ char *buf = (char *)buf_gen;
gnomevfs_input_t *this = (gnomevfs_input_t *) this_gen;
off_t n, num_bytes;