1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-30 03:19:02 +00:00

Get rid of a level of indentation

This commit is contained in:
henri
2013-11-06 18:52:06 +00:00
parent 77f1429a56
commit ba239a8610

View File

@@ -1206,13 +1206,14 @@ void process_expired_events(mspool *nsp) {
break;
nse = container_of(hnode, msevent, expire);
if (msevent_timedout(nse)) {
gh_heap_pop(&nsp->expirables);
process_event(nsp, NULL, nse, EV_NONE);
assert(nse->event_done);
update_first_events(nse);
msevent_unref(nsp, nse);
} else break;
if (!msevent_timedout(nse))
break;
gh_heap_pop(&nsp->expirables);
process_event(nsp, NULL, nse, EV_NONE);
assert(nse->event_done);
update_first_events(nse);
msevent_unref(nsp, nse);
}
}