ecore: remove float comparison warning from Ecore_Pipe.

This commit is contained in:
Cedric BAIL 2016-12-19 16:31:21 -08:00
parent fa66613ed0
commit 172c07d5cd
1 changed files with 17 additions and 17 deletions

View File

@ -427,7 +427,7 @@ _ecore_pipe_wait(Ecore_Pipe *p,
if (wait >= 0.0)
{
/* finite() tests for NaN, too big, too small, and infinity. */
if ((!ECORE_FINITE(timeout)) || (timeout == 0.0))
if ((!ECORE_FINITE(timeout)) || (EINA_FLT_CMP(timeout, 0.0)))
{
tv.tv_sec = 0;
tv.tv_usec = 0;