tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3c6c7c9be6892fd8958d7633e66e0ac7fefeed1d
commit 3c6c7c9be6892fd8958d7633e66e0ac7fefeed1d Author: Tom Hacohen <[email protected]> Date: Thu Jul 16 09:34:16 2015 +0100 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 --- src/lib/ecore_evas/ecore_evas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c index b8ab741..6e49b62 100644 --- a/src/lib/ecore_evas/ecore_evas.c +++ b/src/lib/ecore_evas/ecore_evas.c @@ -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); --
