[vlc-devel] commit: Fix ncurses compilation. ( testing compilation before commiting changes would be nice, especially when it's buildable on your platform) (Antoine Cellerier )
git version control
git at videolan.org
Wed Feb 10 20:46:36 CET 2010
vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Wed Feb 10 20:47:38 2010 +0100| [b4219e32116ddecfb0d4c8495309ea0dd91181c3] | committer: Antoine Cellerier
Fix ncurses compilation. (testing compilation before commiting changes would be nice, especially when it's buildable on your platform)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b4219e32116ddecfb0d4c8495309ea0dd91181c3
---
modules/gui/ncurses.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c
index 3a01951..bd4e097 100644
--- a/modules/gui/ncurses.c
+++ b/modules/gui/ncurses.c
@@ -1118,7 +1118,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
bool fs = var_ToggleBool( p_playlist, "fullscreen" );
if( p_intf->p_sys->p_input )
{
- vout_thread_t *p_vout = inputGetVout( p_intf->p_sys->p_input );
+ vout_thread_t *p_vout = input_GetVout( p_intf->p_sys->p_input );
if( p_vout )
{
var_SetBool( p_vout, "fullscreen", fs );
More information about the vlc-devel
mailing list