[vlc-commits] commit: Growl: cosmetics. ( Rémi Duraffort )

git at videolan.org git at videolan.org
Sun Mar 28 19:11:03 CEST 2010


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Sun Mar 28 19:03:04 2010 +0200| [1f3432f3c21a72734a9db4029ce6541bcad34f76] | committer: Rémi Duraffort 

Growl: cosmetics.

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

 modules/misc/notify/growl_udp.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/misc/notify/growl_udp.c b/modules/misc/notify/growl_udp.c
index cb55045..e093bbb 100644
--- a/modules/misc/notify/growl_udp.c
+++ b/modules/misc/notify/growl_udp.c
@@ -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;
 



More information about the vlc-commits mailing list