From f278315081b24b59bf73e9613e552e3519200a71 Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Mon, 28 May 2012 04:39:18 +0000 Subject: Improve error reporting with a reason code. Improve debug and audit logging. Fix test scripts to cleanup state from previous builds and correctly report test errors. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1343138 13f79535-47bb-0310-9956-ffa450edef68 --- sca-cpp/trunk/kernel/dynlib.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sca-cpp/trunk/kernel/dynlib.hpp') diff --git a/sca-cpp/trunk/kernel/dynlib.hpp b/sca-cpp/trunk/kernel/dynlib.hpp index 9f55dc4a49..484de3d666 100644 --- a/sca-cpp/trunk/kernel/dynlib.hpp +++ b/sca-cpp/trunk/kernel/dynlib.hpp @@ -80,7 +80,7 @@ private: */ template const failable > dynlambda(const string& name, const lib& l) { if (!hasContent(l.h)) - return mkfailure >(reason(l.h)); + return mkfailure>(l.h); const void* s = dlsym(content(l.h), c_str(name)); if (s == NULL) return mkfailure >(string("Could not load symbol: ") + name); -- cgit v1.2.3