From ecca19615c588f771a131432f7161156efc274c2 Mon Sep 17 00:00:00 2001 From: lain Date: Tue, 30 Jul 2019 15:59:38 -0700 Subject: [PATCH] Quick patch to use xtrx_open_string() instead of the removed xtrx_open_list(). --- lib/xtrx/xtrx_obj.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xtrx/xtrx_obj.cc b/lib/xtrx/xtrx_obj.cc index 1d58de5..5c73259 100644 --- a/lib/xtrx/xtrx_obj.cc +++ b/lib/xtrx/xtrx_obj.cc @@ -68,7 +68,7 @@ xtrx_obj::xtrx_obj(const std::string &path, unsigned loglevel, bool lmsreset) unsigned xtrxflag = (loglevel & XTRX_O_LOGLVL_MASK) | ((lmsreset) ? XTRX_O_RESET : 0); std::cerr << "xtrx_obj::xtrx_obj = " << xtrxflag << std::endl; - int res = xtrx_open_list(path.c_str(), NULL, &_obj); + int res = xtrx_open_string(path.c_str(), &_obj); if (res < 0) { std::stringstream message; message << "Couldn't open " ": Error: " << -res;