ecore: return more information on pipe_read error.

SVN revision: 53263
This commit is contained in:
Cedric BAIL 2010-10-11 13:27:03 +00:00
parent cb8d2cf2f9
commit d2736c4d66
1 changed files with 2 additions and 2 deletions

View File

@ -512,9 +512,9 @@ _ecore_pipe_read(void *data, Ecore_Fd_Handler *fd_handler __UNUSED__)
return ECORE_CALLBACK_RENEW;
else
{
ERR("An unhandled error (ret: %zd errno: %d)"
ERR("An unhandled error (ret: %zd errno: %d [%s])"
"occurred while reading from the pipe the length",
ret, errno);
ret, errno, strerror(errno));
return ECORE_CALLBACK_RENEW;
}
#else