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

compile fix

parent 24c64563
...@@ -516,17 +516,17 @@ static VLCTreeItem *o_root_item = nil; ...@@ -516,17 +516,17 @@ static VLCTreeItem *o_root_item = nil;
intf_thread_t *p_intf = VLCIntf; intf_thread_t *p_intf = VLCIntf;
module_t *p_parser; module_t *p_parser;
psz_module_name = (char *)[o_module_name UTF8String]; const char *psz_module_name = (char *)[o_module_name UTF8String];
/* look for module */ /* look for module */
p_parser = module_find( p_intf, psz_module_name ); p_parser = module_find( p_intf, psz_module_name );
if( !p_parser ) if( !p_parser )
return( NO ); return( NO );
module_config_get( p_parser, &confsize ); module_config_get( p_parser, &confsize );
BOOL b_has_prefs = confsize != 0; BOOL b_has_prefs = confsize != 0;
module_release( p_parser ); module_release( p_parser );
return( b_has_prefs ); return( b_has_prefs );
} }
- (NSView *)showView:(NSScrollView *)o_prefs_view - (NSView *)showView:(NSScrollView *)o_prefs_view
......
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