diff options
author | nicm <nicm> | 2017-04-21 14:09:44 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-04-21 14:09:44 +0000 |
commit | c799425069d02675474cda312fac1457829052fb (patch) | |
tree | 072ca7fbea547071b5f4a14de7edc166bf0ac51c /notify.c | |
parent | 428be9803cab5121bc8ccad5ecbcce509c57b3a1 (diff) | |
download | rtmux-c799425069d02675474cda312fac1457829052fb.tar.gz rtmux-c799425069d02675474cda312fac1457829052fb.tar.bz2 rtmux-c799425069d02675474cda312fac1457829052fb.zip |
More unnecessary arguments now winlink points back to session.
Diffstat (limited to 'notify.c')
-rw-r--r-- | notify.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -184,12 +184,12 @@ notify_session(const char *name, struct session *s) } void -notify_winlink(const char *name, struct session *s, struct winlink *wl) +notify_winlink(const char *name, struct winlink *wl) { struct cmd_find_state fs; - cmd_find_from_winlink(&fs, s, wl); - notify_add(name, &fs, NULL, s, wl->window, NULL); + cmd_find_from_winlink(&fs, wl); + notify_add(name, &fs, NULL, wl->session, wl->window, NULL); } void |