From ec084368bf4a6975ed96ac1bc7e51dd1d86dfc3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Courr=C3=A8ges-Anglas?= Date: Fri, 9 Dec 2016 16:42:34 +0100 Subject: Yet another function that doesn't take arguments any more --- src/screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/screen.c b/src/screen.c index 8b624c7..ca7bb2f 100644 --- a/src/screen.c +++ b/src/screen.c @@ -571,7 +571,7 @@ screen_prev (void) } static void -screen_remove_current (rp_screen *s) +screen_remove_current (void) { rp_screen *new_screen; rp_frame *new_frame; @@ -658,7 +658,7 @@ screen_del (rp_screen *s) * focus the next one. */ if (s == rp_current_screen) { - screen_remove_current (s); + screen_remove_current (); } else { rp_frame *cur_frame; rp_window *cur_win; -- cgit v1.2.3