diff options
author | Max Kellermann <max@duempel.org> | 2008-12-05 09:27:07 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-05 09:27:07 +0100 |
commit | b9e428208440e53929b2b6f280b79da393eac0cb (patch) | |
tree | da2ad1c3bef80560887dd34dfc0bdb20151a2863 /src/screen_song.c | |
parent | bdb1e073eeb877273585bfa9ec4d3c755bc6e0a0 (diff) | |
download | mpd-b9e428208440e53929b2b6f280b79da393eac0cb.tar.gz mpd-b9e428208440e53929b2b6f280b79da393eac0cb.tar.xz mpd-b9e428208440e53929b2b6f280b79da393eac0cb.zip |
screen_song: make the variable "current" static
The global variable "current" should not be exported, and should be
"static".
Diffstat (limited to '')
-rw-r--r-- | src/screen_song.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen_song.c b/src/screen_song.c index 4a8f7169f..be8a7c02a 100644 --- a/src/screen_song.c +++ b/src/screen_song.c @@ -23,7 +23,7 @@ static list_window_t *lw; -struct { +static struct { struct mpd_song *song; GPtrArray *lines; } current; |