From: Antoine Cellerier Date: Wed, 10 Feb 2010 19:47:38 +0000 (+0100) Subject: Fix ncurses compilation. (testing compilation before commiting changes would be nice... X-Git-Tag: 1.1.0-ff~195 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b4219e32116ddecfb0d4c8495309ea0dd91181c3;p=vlc Fix ncurses compilation. (testing compilation before commiting changes would be nice, especially when it's buildable on your platform) --- diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c index 3a01951915..bd4e0979db 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 );