summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-09-28 15:24:44 +0100
committerTom Hacohen <tom@stosb.com>2015-09-28 15:24:44 +0100
commit12c39868665e8d327fff27d34a0ba78dadac0961 (patch)
tree8e1e47f49e58e9c748f85cde6a874494344efd57
parentf080d40df77f4442996845a75ea9cbe1b3ccc590 (diff)
downloadefl-12c39868665e8d327fff27d34a0ba78dadac0961.tar.gz
Eo: Fix eo function name getter on windows.
-rw-r--r--src/lib/eo/eo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index d7c3953a98..d70320849e 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;
}