1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-26 01:49:31 +03:00

tevent: fix a comment typo in tevent_epoll.c

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Michael Adam
2013-02-26 15:51:38 +01:00
committed by Jeremy Allison
parent 4a7142ec04
commit 5c31b152d2

View File

@ -317,7 +317,7 @@ static int epoll_event_loop(struct epoll_event_context *epoll_ev, struct timeval
if (epoll_ev->epoll_fd == -1) return -1;
if (tvalp) {
/* it's better to trigger timed events a bit later than to early */
/* it's better to trigger timed events a bit later than too early */
timeout = ((tvalp->tv_usec+999) / 1000) + (tvalp->tv_sec*1000);
}