Commit a0d58599 authored by Clément Stenac's avatar Clément Stenac

Compile fix

parent c4232d21
...@@ -349,7 +349,7 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -349,7 +349,7 @@ PrefsPanel::PrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
p_module = (module_t *) vlc_object_get( p_intf, data->i_object_id ); p_module = (module_t *) vlc_object_get( p_intf, data->i_object_id );
else else
{ {
p_module = config_FindModule( p_intf, "main" ); p_module = config_FindModule( VLC_OBJECT(p_intf), "main" );
assert( p_module ); assert( p_module );
vlc_object_yield( p_module ); vlc_object_yield( p_module );
} }
......
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