Commit 916664af authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/dvdread/input.c, modules/control/rc/rc.c: fixed typos.
parent 3838e880
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* It depends on: libdvdread for ifo files and block reading. * It depends on: libdvdread for ifo files and block reading.
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: input.c,v 1.12 2003/01/23 09:58:02 sam Exp $ * $Id: input.c,v 1.13 2003/01/23 10:25:40 gbazin Exp $
* *
* Author: Stphane Borel <stef@via.ecp.fr> * Author: Stphane Borel <stef@via.ecp.fr>
* *
...@@ -125,7 +125,7 @@ int E_(InitDVD) ( vlc_object_t *p_this ) ...@@ -125,7 +125,7 @@ int E_(InitDVD) ( vlc_object_t *p_this )
if( p_demux->p_module == NULL ) if( p_demux->p_module == NULL )
{ {
free( p_input->p_demux_data ); free( p_input->p_demux_data );
return VLC_EMODULE; return VLC_ENOMOD;
} }
p_input->pf_demux = DvdReadDemux; p_input->pf_demux = DvdReadDemux;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* rc.c : remote control stdin/stdout plugin for vlc * rc.c : remote control stdin/stdout plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: rc.c,v 1.22 2003/01/23 09:53:55 gbazin Exp $ * $Id: rc.c,v 1.23 2003/01/23 10:25:40 gbazin Exp $
* *
* Authors: Peter Surda <shurdeek@panorama.sth.ac.at> * Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
* *
...@@ -217,7 +217,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -217,7 +217,7 @@ static void Run( intf_thread_t *p_intf )
tv.tv_sec = 0; tv.tv_sec = 0;
tv.tv_usec = 50000; tv.tv_usec = 50000;
FD_ZERO( &fds ); FD_ZERO( &fds );
FD_SET( descr_stdin, &fds ); FD_SET( STDIN_FILENO, &fds );
i_dummy = select( STDIN_FILENO + 1, &fds, NULL, NULL, &tv ); i_dummy = select( STDIN_FILENO + 1, &fds, NULL, NULL, &tv );
if( i_dummy > 0 ) if( i_dummy > 0 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment