Eo: Fix eo function name getter on windows.

This commit is contained in:
Tom Hacohen 2015-09-28 15:24:44 +01:00
parent f080d40df7
commit 12c3986866
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}