Fix some format specifier nits, from Ben Boeckel.

This commit is contained in:
nicm
2015-03-31 17:45:10 +00:00
parent cd9ccbc1e9
commit 02df86079b
12 changed files with 31 additions and 31 deletions

View File

@ -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);
}
}