aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen_file.c')
-rw-r--r--src/screen_file.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/screen_file.c b/src/screen_file.c
index 3029165f2..9dfe4ac68 100644
--- a/src/screen_file.c
+++ b/src/screen_file.c
@@ -37,12 +37,12 @@
static struct screen_browser browser;
static void
-browse_paint(mpdclient_t *c);
+browse_paint(void);
static void
file_repaint(void)
{
- browse_paint(NULL);
+ browse_paint();
wrefresh(browser.lw->w);
}
@@ -190,7 +190,7 @@ browse_title(char *str, size_t size)
}
static void
-browse_paint(mpd_unused mpdclient_t *c)
+browse_paint(void)
{
list_window_paint(browser.lw, browser_lw_callback, browser.filelist);
}
@@ -266,4 +266,3 @@ const struct screen_functions screen_browse = {
.cmd = browse_cmd,
.get_title = browse_title,
};
-