From 771d7db3a6e19cd773b2f1a2547ec3db5f75b07f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 26 Mar 2013 10:54:48 +0000 Subject: Fix compiler warnings, missing #include. From Thomas Adam. --- control-notify.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'control-notify.c') diff --git a/control-notify.c b/control-notify.c index 0931c23a..a298cdc5 100644 --- a/control-notify.c +++ b/control-notify.c @@ -99,14 +99,12 @@ void control_notify_window_unlinked(unused struct session *s, struct window *w) { struct client *c; - struct session *cs; u_int i; for (i = 0; i < ARRAY_LENGTH(&clients); i++) { c = ARRAY_ITEM(&clients, i); if (!CONTROL_SHOULD_NOTIFY_CLIENT(c) || c->session == NULL) continue; - cs = c->session; control_write(c, "%%window-close @%u", w->id); } @@ -136,14 +134,12 @@ void control_notify_window_renamed(struct window *w) { struct client *c; - struct session *s; u_int i; for (i = 0; i < ARRAY_LENGTH(&clients); i++) { c = ARRAY_ITEM(&clients, i); if (!CONTROL_SHOULD_NOTIFY_CLIENT(c) || c->session == NULL) continue; - s = c->session; control_write(c, "%%window-renamed @%u %s", w->id, w->name); } -- cgit