diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 14:31:00 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 14:31:00 +0200 |
commit | ef040e296e46fcc7620edaf89ffac05e065ec3e3 (patch) | |
tree | 8836cbeb47208a2f949d6f44a093f795f03f37cb /src/screen_play.h | |
parent | 0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d (diff) | |
download | mpd-ef040e296e46fcc7620edaf89ffac05e065ec3e3.tar.gz mpd-ef040e296e46fcc7620edaf89ffac05e065ec3e3.tar.xz mpd-ef040e296e46fcc7620edaf89ffac05e065ec3e3.zip |
screen: export the global variable "screen"
screen_t is a singleton. We do not have to pass it around
everywhere. Export the one global variable.
Diffstat (limited to '')
-rw-r--r-- | src/screen_play.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen_play.h b/src/screen_play.h index 36d57a2fa..3ff3cb02a 100644 --- a/src/screen_play.h +++ b/src/screen_play.h @@ -1,2 +1,2 @@ -int playlist_save(screen_t *screen, mpdclient_t *c, char *name, char *defaultname); +int playlist_save(mpdclient_t *c, char *name, char *defaultname); |