aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_search.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-03 14:30:59 +0200
committerMax Kellermann <max@duempel.org>2008-10-03 14:30:59 +0200
commit0b2eee9489a8acef3cdee6f6fa0df6d167c53b8d (patch)
tree0d6f69175f1c45a2815131fc219faec2e3551a0d /src/screen_search.c
parent1d0e05d6b1621a95acdb18ea03d45ce955495ee4 (diff)
downloadmpd-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 '')
-rw-r--r--src/screen_search.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screen_search.c b/src/screen_search.c
index 989ac7eaa..bf9278b53 100644
--- a/src/screen_search.c
+++ b/src/screen_search.c
@@ -122,12 +122,12 @@ lw_search_help_callback(unsigned idx, mpd_unused int *highlight,
}
static void
-paint(mpdclient_t *c);
+paint(void);
static void
search_repaint(void)
{
- paint(NULL);
+ paint();
wrefresh(browser.lw->w);
}
@@ -378,7 +378,7 @@ resize(int cols, int rows)
}
static void
-paint(mpd_unused mpdclient_t *c)
+paint(void)
{
if (browser.filelist) {
browser.lw->flags = 0;