git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Split SETTINGS to interface and implementation
[stg.git]
/
projects
/
convertor
/
main.cpp
diff --git
a/projects/convertor/main.cpp
b/projects/convertor/main.cpp
index 5985f5a6a427c2e915f326b013f82711e25a1971..3d08ad2adeb67e43cd1533f63ee3b32aab751e9c 100644
(file)
--- a/
projects/convertor/main.cpp
+++ b/
projects/convertor/main.cpp
@@
-114,14
+114,14
@@
if (!dst_lh)
STORE * (*GetSourceStore)();
STORE * (*GetDestStore)();
STORE * (*GetSourceStore)();
STORE * (*GetDestStore)();
-GetSourceStore = (
BASE_
STORE * (*)())dlsym(src_lh, "GetStore");
+GetSourceStore = (STORE * (*)())dlsym(src_lh, "GetStore");
if (!GetSourceStore)
{
printfd(__FILE__, "Source storage plugin loading failed. GetStore not found: %s\n", dlerror());
delete settings;
return -1;
}
if (!GetSourceStore)
{
printfd(__FILE__, "Source storage plugin loading failed. GetStore not found: %s\n", dlerror());
delete settings;
return -1;
}
-GetDestStore = (
BASE_
STORE * (*)())dlsym(dst_lh, "GetStore");
+GetDestStore = (STORE * (*)())dlsym(dst_lh, "GetStore");
if (!GetDestStore)
{
printfd(__FILE__, "Storage plugin (firebird) loading failed. GetStore not found: %s\n", dlerror());
if (!GetDestStore)
{
printfd(__FILE__, "Storage plugin (firebird) loading failed. GetStore not found: %s\n", dlerror());