Skip to content

Commit

Permalink
macosx: cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
David Fuhrmann committed Apr 28, 2014
1 parent c87e0df commit 344a596
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/gui/macosx/ExtensionsManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ - (void)inputChanged:(input_thread_t *)p_input
{
//This is unlikely, but can happen if no extension modules can be loaded.
if (p_extensions_manager == NULL)
return ;
return;
vlc_mutex_lock(&p_extensions_manager->lock);

extension_t *p_ext;
Expand All @@ -290,7 +290,7 @@ - (void)playingChanged:(int)state
{
//This is unlikely, but can happen if no extension modules can be loaded.
if (p_extensions_manager == NULL)
return ;
return;
vlc_mutex_lock(&p_extensions_manager->lock);

extension_t *p_ext;
Expand All @@ -307,7 +307,7 @@ - (void)metaChanged:(input_item_t *)p_input
{
//This is unlikely, but can happen if no extension modules can be loaded.
if (p_extensions_manager == NULL)
return ;
return;
vlc_mutex_lock(&p_extensions_manager->lock);
extension_t *p_ext;
FOREACH_ARRAY(p_ext, p_extensions_manager->extensions) {
Expand Down

0 comments on commit 344a596

Please sign in to comment.