Commit 1f3432f3 authored by Rémi Duraffort's avatar Rémi Duraffort

Growl: cosmetics.

parent 49f13e0e
...@@ -108,12 +108,12 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -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(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval);
VLC_UNUSED(param); VLC_UNUSED(param);
char psz_tmp[GROWL_MAX_LENGTH]; char psz_tmp[GROWL_MAX_LENGTH];
char *psz_title = NULL; char *psz_title;
char *psz_artist = NULL; char *psz_artist;
char *psz_album = NULL; char *psz_album;
input_thread_t *p_input; input_thread_t *p_input = playlist_CurrentInput( (playlist_t*)p_this );
p_input = playlist_CurrentInput( (playlist_t*)p_this );
if( !p_input ) return VLC_SUCCESS; if( !p_input ) return VLC_SUCCESS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment