summaryrefslogtreecommitdiffstats
path: root/server-window.c
diff options
context:
space:
mode:
authornicm <nicm>2015-03-31 17:45:10 +0000
committernicm <nicm>2015-03-31 17:45:10 +0000
commit02df86079b1f3155313ebb6f891cf6cf593d3ad9 (patch)
treee7ae66647bb6a838166789e3525cff8dcc755f28 /server-window.c
parentcd9ccbc1e98b48fd8bfb64356664313a8eb1f7b0 (diff)
Fix some format specifier nits, from Ben Boeckel.
Diffstat (limited to 'server-window.c')
-rw-r--r--server-window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server-window.c b/server-window.c
index a14c3150..a2355701 100644
--- a/server-window.c
+++ b/server-window.c
@@ -90,7 +90,7 @@ server_window_check_bell(struct session *s, struct winlink *wl)
if (c->session->curw->window == w)
status_message_set(c, "Bell in current window");
else if (action == BELL_ANY)
- status_message_set(c, "Bell in window %u", wl->idx);
+ status_message_set(c, "Bell in window %d", wl->idx);
}
return (1);
@@ -124,7 +124,7 @@ server_window_check_activity(struct session *s, struct winlink *wl)
c = ARRAY_ITEM(&clients, i);
if (c == NULL || c->session != s)
continue;
- status_message_set(c, "Activity in window %u", wl->idx);
+ status_message_set(c, "Activity in window %d", wl->idx);
}
}
@@ -175,7 +175,7 @@ server_window_check_silence(struct session *s, struct winlink *wl)
c = ARRAY_ITEM(&clients, i);
if (c == NULL || c->session != s)
continue;
- status_message_set(c, "Silence in window %u", wl->idx);
+ status_message_set(c, "Silence in window %d", wl->idx);
}
}