summaryrefslogtreecommitdiffstats
path: root/notify.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-05-07 13:02:27 +0100
committerThomas Adam <thomas@xteddy.org>2019-05-07 13:02:27 +0100
commitd9767b81123cc8913c63c42cc754cccbf34ccb6c (patch)
tree94e0a8cdb822db6145080c02907ad626c0d0fa89 /notify.c
parenteac30a86d78879f2dec802b0d246eba0afa79b3e (diff)
parent85a9c2f52b8855560fa9fdaa033d1c7bca738429 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'notify.c')
-rw-r--r--notify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/notify.c b/notify.c
index 163aa1a9..8bd8f98f 100644
--- a/notify.c
+++ b/notify.c
@@ -198,13 +198,13 @@ notify_hook(struct cmdq_item *item, const char *name)
}
void
-notify_input(struct window_pane *wp, struct evbuffer *input)
+notify_input(struct window_pane *wp, const u_char *buf, size_t len)
{
struct client *c;
TAILQ_FOREACH(c, &clients, entry) {
if (c->flags & CLIENT_CONTROL)
- control_notify_input(c, wp, input);
+ control_notify_input(c, wp, buf, len);
}
}