diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 14:30:59 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 14:30:59 +0200 |
commit | 0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d (patch) | |
tree | 0d6f69175f1c45a2815131fc219faec2e3551a0d /src/screen_artist.c | |
parent | 1d0e05d6b1621a95acdb18ea03d45ce955495ee4 (diff) | |
download | mpd-0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d.tar.gz mpd-0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d.tar.xz mpd-0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d.zip |
screen: don't pass mpdclient pointer to method paint()
None of the paint() implementations acutally uses the mpdclient
pointer. Remove it from the method signature.
Diffstat (limited to 'src/screen_artist.c')
-rw-r--r-- | src/screen_artist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screen_artist.c b/src/screen_artist.c index 86291d87d..52b7eeee8 100644 --- a/src/screen_artist.c +++ b/src/screen_artist.c @@ -94,12 +94,12 @@ artist_lw_callback(unsigned idx, mpd_unused int *highlight, mpd_unused void *dat } static void -paint(mpdclient_t *c); +paint(void); static void artist_repaint(void) { - paint(NULL); + paint(); wrefresh(browser.lw->w); } @@ -352,7 +352,7 @@ resize(int cols, int rows) } static void -paint(mpd_unused mpdclient_t *c) +paint(void) { if (browser.filelist) { list_window_paint(browser.lw, browser_lw_callback, |