aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_song.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-05 09:27:07 +0100
committerMax Kellermann <max@duempel.org>2008-12-05 09:27:07 +0100
commitb9e428208440e53929b2b6f280b79da393eac0cb (patch)
treeda2ad1c3bef80560887dd34dfc0bdb20151a2863 /src/screen_song.c
parentbdb1e073eeb877273585bfa9ec4d3c755bc6e0a0 (diff)
downloadmpd-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.c2
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;