evil: fix wrong values in timeval

Summary: time values are of type long, but a double values was used

Test Plan: compilation

Reviewers: raster, zmike, q66, simotek

Reviewed By: zmike, simotek

Subscribers: simotek, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8444
This commit is contained in:
Vincent Torri 2019-03-22 09:09:14 -04:00 committed by Mike Blumenkrantz
parent 44d0cb9260
commit 10c2342d93
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ _is_socket(SOCKET s)
fd_set rfds;
struct timeval tv;
tv.tv_sec = 0.00000001;
tv.tv_usec = 0;
tv.tv_sec = 0;
tv.tv_usec = 100;
FD_ZERO(&rfds);
FD_SET(s, &rfds);