diff options
-rw-r--r-- | src/screen_artist.c | 1 | ||||
-rw-r--r-- | src/screen_file.c | 1 | ||||
-rw-r--r-- | src/screen_keydef.c | 1 | ||||
-rw-r--r-- | src/screen_play.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/screen_artist.c b/src/screen_artist.c index f010a089d..eb7b2e5d4 100644 --- a/src/screen_artist.c +++ b/src/screen_artist.c @@ -72,7 +72,6 @@ artist_lw_callback(int index, int *highlight, void *data) static char buf[BUFSIZE]; char *str, *str_utf8; - *highlight = 0; if( (str_utf8=(char *) g_list_nth_data(metalist,index))==NULL ) return NULL; diff --git a/src/screen_file.c b/src/screen_file.c index 264045739..16f935242 100644 --- a/src/screen_file.c +++ b/src/screen_file.c @@ -156,7 +156,6 @@ browse_lw_callback(unsigned idx, int *highlight, void *data) filelist_entry_t *entry; mpd_InfoEntity *entity; - *highlight = 0; if( (entry=(filelist_entry_t *)g_list_nth_data(fl->list,idx))==NULL ) return NULL; diff --git a/src/screen_keydef.c b/src/screen_keydef.c index 397933a14..9d573976a 100644 --- a/src/screen_keydef.c +++ b/src/screen_keydef.c @@ -188,7 +188,6 @@ list_callback(unsigned idx, int *highlight, mpd_unused void *data) { static char buf[BUFSIZE]; - *highlight = 0; if (subcmd < 0) { if (idx < (unsigned)command_list_length) { if (cmds[idx].flags & COMMAND_KEY_CONFLICT) diff --git a/src/screen_play.c b/src/screen_play.c index 0426176d6..c59c766cd 100644 --- a/src/screen_play.c +++ b/src/screen_play.c @@ -80,7 +80,6 @@ list_callback(unsigned idx, int *highlight, void *data) mpdclient_t *c = (mpdclient_t *) data; mpd_Song *song; - *highlight = 0; if( (song=playlist_get_song(c, idx)) == NULL ) { return NULL; } |