Tiny cleanup.

ok nicm@
pull/1/head
Matthias Kilian 2009-09-07 19:08:45 +00:00
parent ccba613e5b
commit e323f6620d
1 changed files with 2 additions and 2 deletions

View File

@ -1228,8 +1228,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);
}
}
}