From: RĂ©mi Duraffort Date: Tue, 15 Jul 2008 17:48:38 +0000 (+0200) Subject: Fix a compilation warning. X-Git-Tag: 0.9.0-test3~434 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=4239976f2b6aa0dd6a497d564eddab5a62165d6f;p=vlc Fix a compilation warning. --- diff --git a/modules/control/rc.c b/modules/control/rc.c index 3f79c05827..c78fd9c180 100644 --- a/modules/control/rc.c +++ b/modules/control/rc.c @@ -2144,7 +2144,7 @@ bool ReadCommand( intf_thread_t *p_intf, char *p_buffer, int *pi_size ) { /* Standard input closed: exit */ vlc_value_t empty; - Quit( p_intf, NULL, empty, empty, NULL ); + Quit( VLC_OBJECT(p_intf), NULL, empty, empty, NULL ); } p_buffer[ *pi_size ] = 0;