mirror of
https://github.com/tmux/tmux.git
synced 2025-04-09 02:18:48 +00:00
Sync OpenBSD patchset 319:
Tiny cleanup. ok nicm@
This commit is contained in:
parent
c272de7cba
commit
1de812d5a8
6
server.c
6
server.c
@ -1,4 +1,4 @@
|
||||
/* $Id: server.c,v 1.180 2009-09-05 19:03:41 tcunha Exp $ */
|
||||
/* $Id: server.c,v 1.181 2009-09-07 23:50:07 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -1231,8 +1231,8 @@ server_second_timers(void)
|
||||
/* If locked, redraw all clients. */
|
||||
if (server_locked) {
|
||||
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
||||
if (ARRAY_ITEM(&clients, i) != NULL)
|
||||
server_redraw_client(ARRAY_ITEM(&clients, i));
|
||||
if ((c = ARRAY_ITEM(&clients, i)) != NULL)
|
||||
server_redraw_client(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user