Ecore evas: Correct function name in magic failure.

Why this is done like this, and not just with __func__ in the macro is
beyond me.

Thanks to Vincent Torri for pointing this out.

@fix
This commit is contained in:
Tom Hacohen 2015-07-16 09:34:16 +01:00
parent 60b473d949
commit 3c6c7c9be6
1 changed files with 1 additions and 1 deletions

View File

@ -1188,7 +1188,7 @@ ecore_evas_managed_move(Ecore_Evas *ee, int x, int y)
if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
{
ECORE_MAGIC_FAIL(ee, ECORE_MAGIC_EVAS,
"ecore_evas_move");
"ecore_evas_managed_move");
return;
}
IFC(ee, fn_managed_move) (ee, x, y);