Commit e509d7f8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

fix intf_c

parent c047aa40
......@@ -241,7 +241,7 @@ static int AddIntfCallback( vlc_object_t *p_this, char const *psz_cmd,
if( asprintf( &psz_intf, "%s,none", newval.psz_string ) == -1 )
return VLC_ENOMEM;
int ret = intf_Create( p_this->p_libvlc, psz_intf );
int ret = intf_Create( VLC_OBJECT(p_this->p_libvlc), psz_intf );
free( psz_intf );
if( ret )
msg_Err( p_this, "interface \"%s\" initialization failed",
......
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