tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=12c39868665e8d327fff27d34a0ba78dadac0961
commit 12c39868665e8d327fff27d34a0ba78dadac0961 Author: Tom Hacohen <[email protected]> Date: Mon Sep 28 15:24:44 2015 +0100 Eo: Fix eo function name getter on windows. --- src/lib/eo/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index d7c3953..d703208 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -235,7 +235,7 @@ _eo_op_desc_name_get(const Eo_Op_Description *desc) fct_name = info.dli_sname; # endif #else - fct_name = api_func; /* Same on windows */ + fct_name = desc->api_func; /* Same on windows */ #endif return fct_name; } --
