summaryrefslogtreecommitdiff
path: root/boost/dll/detail/posix/path_from_handle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/dll/detail/posix/path_from_handle.hpp')
-rw-r--r--boost/dll/detail/posix/path_from_handle.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/dll/detail/posix/path_from_handle.hpp b/boost/dll/detail/posix/path_from_handle.hpp
index a2787623d6..65d1a78b96 100644
--- a/boost/dll/detail/posix/path_from_handle.hpp
+++ b/boost/dll/detail/posix/path_from_handle.hpp
@@ -84,12 +84,12 @@ namespace boost { namespace dll { namespace detail {
const struct soinfo* si = reinterpret_cast<const struct soinfo*>(
static_cast<const char*>(handle) + work_around_b_24465209__offset
);
- boost::filesystem::path ret = boost::dll::detail::symbol_location_impl(si->base, ec);
+ boost::filesystem::path ret = boost::dll::symbol_location_ptr(si->base, ec);
if (ec) {
ec.clear();
si = static_cast<const struct soinfo*>(handle);
- return boost::dll::detail::symbol_location_impl(si->base, ec);
+ return boost::dll::symbol_location_ptr(si->base, ec);
}
return ret;