Skip to content

Commit 9c0e462

Browse files
committed
Fix missing declaration in tabrest.cpp causing compiling failure on Linux
1 parent 2cb4b15 commit 9c0e462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/connect/tabrest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ XGETREST GetRestFunction(PGLOBAL g)
133133
} // endif Hdll
134134

135135
// Get the function returning an instance of the external DEF class
136-
if (!(getRestFnc = (XGETREST)dlsym(Hdll, "restGetFile"))) {
136+
if (!(getRestFnc = (XGETREST)dlsym(Hso, "restGetFile"))) {
137137
error = dlerror();
138138
sprintf(g->Message, MSG(GET_FUNC_ERR), "restGetFile", SVP(error));
139139
dlclose(Hso);

0 commit comments

Comments
 (0)