[vlc-commits] MacOS: use VLC_OBJECT

Jean-Baptiste Kempf git at videolan.org
Sat Dec 10 20:15:49 CET 2011


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

MacOS: use VLC_OBJECT
(cherry picked from commit fde8edfe5de05237782e463e07c1043778390bd4)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 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