ecore_con: No need to check for the for the same flag two times.

I did not do changelog, news or backport here as it has zero effect on the
functionality. Just makes the code easier to udnerstand and read. If you think
it needs to be done neverless howl and let me know what you actually want in
it. :)

SVN revision: 77441
This commit is contained in:
Stefan Schmidt 2012-10-04 14:56:22 +00:00
parent 3b0804e195
commit 383af77fce
1 changed files with 1 additions and 1 deletions

View File

@ -2021,7 +2021,7 @@ _ecore_con_cl_udp_handler(void *data,
want_write = ecore_main_fd_handler_active_get(fd_handler, ECORE_FD_WRITE);
svr = data;
if (svr->delete_me || svr->delete_me || ((!want_read) && (!want_write)))
if (svr->delete_me || ((!want_read) && (!want_write)))
return ECORE_CALLBACK_RENEW;
if (want_write)