ecore_con: Remove superfluous >= 0 check for unsigned

Since num was changed from (signed) int to (unsigned)  size_t in
16d7b981eb this check no longer
makes sense as it will always be true.
This commit is contained in:
Stefan Schmidt 2014-04-11 11:26:18 +02:00
parent 1563181922
commit b53a68d4c6
1 changed files with 1 additions and 1 deletions

View File

@ -2467,7 +2467,7 @@ _ecore_con_client_flush(Ecore_Con_Client *cl)
if (cl->fd_handler)
ecore_main_fd_handler_active_set(cl->fd_handler, ECORE_FD_READ);
}
else if (cl->fd_handler && (num >= 0))
else if (cl->fd_handler)
ecore_main_fd_handler_active_set(cl->fd_handler, ECORE_FD_WRITE);
}