Remove unused variables in core_loop()

This commit is contained in:
adri 2008-07-14 09:55:52 +00:00
父節點 ddb1f738d4
當前提交 e1ac49d220

查看文件

@ -1212,14 +1212,9 @@ conn_handle_write_event(int sd, short ev, void *a)
void
core_loop(void)
{
int is_readable, is_writable, n, sd, bit, min_i, max_i, i =
0;
fd_set readable, writable;
fd_mask mask;
while (running) {
timer_tick();
n = event_loop(EVLOOP_ONCE);
(void) event_loop(EVLOOP_ONCE);
}
}