summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin KAY <komadori@users.sourceforge.net>2002-11-08 15:49:03 +0000
committerRobin KAY <komadori@users.sourceforge.net>2002-11-08 15:49:03 +0000
commita370ab50006fce2a857966d5c9944d2f42144b23 (patch)
treef3446bac26dbb632b497fd921bc90a4f83c4069b /src
parent676500f671d5f4debf193d8bc1d09983f86a4b9d (diff)
downloadxine-lib-a370ab50006fce2a857966d5c9944d2f42144b23.tar.gz
xine-lib-a370ab50006fce2a857966d5c9944d2f42144b23.tar.bz2
vcd input plugin now compiles on Solaris
CVS patchset: 3204 CVS date: 2002/11/08 15:49:03
Diffstat (limited to 'src')
-rw-r--r--src/input/input_vcd.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index 21adc91d1..aca7d9cf9 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_vcd.c,v 1.57 2002/11/08 11:49:02 guenter Exp $
+ * $Id: input_vcd.c,v 1.58 2002/11/08 15:49:03 komadori Exp $
*
*/
@@ -920,7 +920,6 @@ static void vcd_class_dispose (input_class_t *this_gen) {
#if defined (__linux__)
static int vcd_class_eject_media (input_class_t *this_gen) {
-
vcd_input_class_t *this = (vcd_input_class_t *) this_gen;
int ret, status, fd;
@@ -952,7 +951,7 @@ static int vcd_class_eject_media (input_class_t *this_gen) {
return 1;
}
#elif defined (__FreeBSD__)
-static int vcd_plugin_eject_media (input_class_t *this_gen) {
+static int vcd_class_eject_media (input_class_t *this_gen) {
vcd_input_class_t *this = (vcd_input_class_t *) this_gen;
int fd;
@@ -970,8 +969,7 @@ static int vcd_plugin_eject_media (input_class_t *this_gen) {
return 1;
}
#elif defined (__sun)
-static int vcd_plugin_eject_media (vcd_input_class_t *this) {
-
+static int vcd_class_eject_media (input_class_t *this_gen) {
vcd_input_class_t *this = (vcd_input_class_t *) this_gen;
int fd, ret;