Commit 9c0e462f authored by Olivier Bertrand's avatar Olivier Bertrand

Fix missing declaration in tabrest.cpp causing compiling failure on Linux

parent 2cb4b152
......@@ -133,7 +133,7 @@ XGETREST GetRestFunction(PGLOBAL g)
} // endif Hdll
// Get the function returning an instance of the external DEF class
if (!(getRestFnc = (XGETREST)dlsym(Hdll, "restGetFile"))) {
if (!(getRestFnc = (XGETREST)dlsym(Hso, "restGetFile"))) {
error = dlerror();
sprintf(g->Message, MSG(GET_FUNC_ERR), "restGetFile", SVP(error));
dlclose(Hso);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment