Rename ultragrid modules to ultragrid_* instead of module_*

This commit is contained in:
Lukas Rucka
2018-08-01 14:09:49 +02:00
parent 1e2f38c97c
commit d028b69503
4 changed files with 46 additions and 46 deletions

View File

@@ -272,7 +272,7 @@ const void *load_library(const char *name, enum library_class cls, int abi_versi
// Library was not found or was not loaded due to unsatisfied
// dependencies. If the latter one, display reason why dlopen() failed.
if (library_class_info.find(cls) != library_class_info.end()) {
string filename = "module_";
string filename = "ultragrid_";
if (strlen(library_class_info.at(cls).file_prefix) > 0) {
filename += library_class_info.at(cls).file_prefix;
filename += "_";