ecore_pipe - fix warning of sign vs unsigned comparison

This commit is contained in:
Carsten Haitzler 2017-04-21 16:19:43 +09:00
parent a6253f44a9
commit 7282716820
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ _ecore_pipe_wait(Ecore_Pipe *p,
if ((fd_timer_found) && (p->timerfd != PIPE_FD_INVALID))
{
if (pipe_read(p->timerfd, &timerfdbuf, sizeof(timerfdbuf))
< sizeof(int64_t))
< (int)sizeof(int64_t))
WRN("Could not read timerfd data");
_ecore_pipe_unhandle(p);
break;