X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d394e187f188697887dd12bac03aebfc867e8c5e..c963a109219ed101fa42f501b16f90d7b7b4f3f2:/projects/convertor/main.cpp diff --git a/projects/convertor/main.cpp b/projects/convertor/main.cpp index 5985f5a6..3d08ad2a 100644 --- a/projects/convertor/main.cpp +++ b/projects/convertor/main.cpp @@ -114,14 +114,14 @@ if (!dst_lh) 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; } -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());