Fix last change.

This commit is contained in:
Emanuele Giaquinta 2010-10-15 22:59:59 +00:00
parent 0af42bdc3e
commit 24d839395b
1 changed files with 1 additions and 1 deletions

2
ev.c
View File

@ -783,7 +783,7 @@ ev_sleep (ev_tstamp delay)
/* here we rely on sys/time.h + sys/types.h + unistd.h providing select */
/* something not guaranteed by newer posix versions, but guaranteed */
/* by older ones */
EV_TS_SET (tv, delay);
EV_TV_SET (tv, delay);
select (0, 0, 0, 0, &tv);
#endif
}