[vlc-commits] MacOS: use VLC_OBJECT

Jean-Baptiste Kempf git at videolan.org
Sat Dec 10 00:00:31 CET 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Dec 10 00:00:20 2011 +0100| [3d3718f5a18a32f4e08955b78fa5c466308053f7] | committer: Jean-Baptiste Kempf

MacOS: use VLC_OBJECT

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3d3718f5a18a32f4e08955b78fa5c466308053f7
---

 modules/gui/macosx/AudioEffects.m |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/macosx/AudioEffects.m b/modules/gui/macosx/AudioEffects.m
index a8b5ebb..1e9e31b 100644
--- a/modules/gui/macosx/AudioEffects.m
+++ b/modules/gui/macosx/AudioEffects.m
@@ -187,9 +187,9 @@ static bool GetEqualizerStatus( intf_thread_t *p_custom_intf,
 
 - (void)setupEqualizer
 {
-    vlc_object_t *p_object= VLC_OBJECT(getAout());
+    vlc_object_t *p_object = VLC_OBJECT(getAout());
     if( p_object == NULL )
-        p_object = (vlc_object_t *)pl_Get( VLCIntf );
+        p_object = VLC_OBJECT(pl_Get( VLCIntf ));
 
     if( p_object )
     {



More information about the vlc-commits mailing list