Ecore: ecore_pipe : fix function name in magic check. Reported by Ulrich Eckhardt

SVN revision: 60023
This commit is contained in:
Vincent Torri 2011-06-07 06:37:25 +00:00
parent 431b652da9
commit 50cadd1765
1 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ ecore_pipe_freeze(Ecore_Pipe *p)
{
if (!ECORE_MAGIC_CHECK(p, ECORE_MAGIC_PIPE))
{
ECORE_MAGIC_FAIL(p, ECORE_MAGIC_PIPE, "ecore_pipe_read_close");
ECORE_MAGIC_FAIL(p, ECORE_MAGIC_PIPE, "ecore_pipe_read_freeze");
return;
}
if (p->fd_handler)
@ -400,7 +400,7 @@ ecore_pipe_thaw(Ecore_Pipe *p)
{
if (!ECORE_MAGIC_CHECK(p, ECORE_MAGIC_PIPE))
{
ECORE_MAGIC_FAIL(p, ECORE_MAGIC_PIPE, "ecore_pipe_read_close");
ECORE_MAGIC_FAIL(p, ECORE_MAGIC_PIPE, "ecore_pipe_read_thaw");
return;
}
if (!p->fd_handler && p->fd_read != PIPE_FD_INVALID)