]> git.sesse.net Git - vlc/commitdiff
growl: fix incompatible pointer warning
authorDavid Fuhrmann <david.fuhrmann@googlemail.com>
Thu, 20 Feb 2014 16:43:24 +0000 (17:43 +0100)
committerDavid Fuhrmann <david.fuhrmann@googlemail.com>
Thu, 20 Feb 2014 16:43:24 +0000 (17:43 +0100)
modules/notify/growl.m

index d9dae02e2a4e3a1c50f092b835741271fea3d5ba..e8e522635834362db62aac37437ae903301213aa 100644 (file)
@@ -137,7 +137,7 @@ static int Open( vlc_object_t *p_this )
 static void Close( vlc_object_t *p_this )
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
-    playlist_t *p_playlist = pl_Get( p_this );
+    playlist_t *p_playlist = pl_Get( p_intf );
     intf_sys_t *p_sys = p_intf->p_sys;
 
     var_DelCallback( p_playlist, "item-change", ItemChange, p_intf );