From b9e428208440e53929b2b6f280b79da393eac0cb Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 5 Dec 2008 09:27:07 +0100 Subject: [PATCH] screen_song: make the variable "current" static The global variable "current" should not be exported, and should be "static". --- src/screen_song.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2