diff options
author | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2016-12-09 16:42:34 +0100 |
---|---|---|
committer | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2016-12-09 16:42:34 +0100 |
commit | ec084368bf4a6975ed96ac1bc7e51dd1d86dfc3a (patch) | |
tree | efeb31e1832d3253c59db862138a299b28cf3056 | |
parent | 3fabca8d30161ade3c77dfec575708aa1ed7fcdf (diff) | |
download | ratpoison-ec084368bf4a6975ed96ac1bc7e51dd1d86dfc3a.zip |
Yet another function that doesn't take arguments any more
-rw-r--r-- | src/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |