]> git.sesse.net Git - vlc/commitdiff
Growl: cosmetics.
authorRémi Duraffort <ivoire@videolan.org>
Sun, 28 Mar 2010 17:03:04 +0000 (19:03 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Sun, 28 Mar 2010 17:03:04 +0000 (19:03 +0200)
modules/misc/notify/growl_udp.c

index cb550455cf20e97f74a859f216da8cd98737764b..e093bbbd25047ab641a44291e835c16c734da188 100644 (file)
@@ -108,12 +108,12 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
 {
     VLC_UNUSED(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval);
     VLC_UNUSED(param);
+
     char psz_tmp[GROWL_MAX_LENGTH];
-    char *psz_title = NULL;
-    char *psz_artist = NULL;
-    char *psz_album = NULL;
-    input_thread_t *p_input;
-    p_input = playlist_CurrentInput( (playlist_t*)p_this );
+    char *psz_title;
+    char *psz_artist;
+    char *psz_album;
+    input_thread_t *p_input = playlist_CurrentInput( (playlist_t*)p_this );
 
     if( !p_input ) return VLC_SUCCESS;