Commit a9d51c0e authored by Sergey Lyubka's avatar Sergey Lyubka

squashed warning

parent 4b163232
...@@ -1231,7 +1231,8 @@ static struct dirent *readdir(DIR *dir) { ...@@ -1231,7 +1231,8 @@ static struct dirent *readdir(DIR *dir) {
static int poll(struct pollfd *pfd, int n, int milliseconds) { static int poll(struct pollfd *pfd, int n, int milliseconds) {
struct timeval tv; struct timeval tv;
fd_set set; fd_set set;
int i, result, maxfd = 0; int i, result;
SOCKET maxfd = 0;
tv.tv_sec = milliseconds / 1000; tv.tv_sec = milliseconds / 1000;
tv.tv_usec = (milliseconds % 1000) * 1000; tv.tv_usec = (milliseconds % 1000) * 1000;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment