mirror of
https://github.com/tmux/tmux.git
synced 2025-09-06 08:57:06 +00:00
Fix some format specifier nits, from Ben Boeckel.
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user