From: Max Kellermann Date: Fri, 5 Dec 2008 08:27:07 +0000 (+0100) Subject: screen_song: make the variable "current" static X-Git-Tag: release-0.12~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b9e428208440e53929b2b6f280b79da393eac0cb;p=ncmpc.git screen_song: make the variable "current" static The global variable "current" should not be exported, and should be "static". --- diff --git a/src/screen_song.c b/src/screen_song.c index 4a8f716..be8a7c0 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;