let's use ()'s to group our logic better?

SVN revision: 69712
This commit is contained in:
Carsten Haitzler 2012-03-29 03:15:36 +00:00
parent 651d301b69
commit 964881333c
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ _ecore_glib_context_poll_to(GPollFD *pfds,
{
GPollFD *itr = pfds, *itr_end = pfds + count;
for (; itr < itr_end && ready > 0; itr++)
for (; (itr < itr_end) && (ready > 0); itr++)
{
itr->revents = 0;
if (FD_ISSET(itr->fd, rfds))