diff options
author | Kalle Wallin <kaw@linux.se> | 2004-06-07 21:48:16 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-06-07 21:48:16 +0000 |
commit | d98fbf6d5f1a60d3a6ae561dbc6df955876e10fc (patch) | |
tree | e56e1e1d25aabbc55e125dd909790ae9057d6801 | |
parent | 6a71f6f90e558829598a874aa94eed14ce196a5f (diff) | |
download | mpd-d98fbf6d5f1a60d3a6ae561dbc6df955876e10fc.tar.gz mpd-d98fbf6d5f1a60d3a6ae561dbc6df955876e10fc.tar.xz mpd-d98fbf6d5f1a60d3a6ae561dbc6df955876e10fc.zip |
Display stream names in the list window.
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1382 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/screen_play.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screen_play.c b/src/screen_play.c index 8ee1c4902..a14033289 100644 --- a/src/screen_play.c +++ b/src/screen_play.c @@ -1,5 +1,7 @@ /* - * (c) 2004 by Kalle Wallin (kaw@linux.se) + * $Id$ + * + * (c) 2004 by Kalle Wallin <kaw@linux.se> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -54,7 +56,7 @@ list_callback(int index, int *highlight, void *data) *highlight = 1; } - return mpc_get_song_name(song); + return mpc_get_song_name2(song); } static int |