libobs: Fix log message

Refines warning message to make it clear for the end-user.

Module may fail to load by different reasons.
This commit is contained in:
SuslikV 2018-01-13 12:26:34 +02:00 committed by GitHub
parent 17560bf86a
commit 70bc2581b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ int obs_open_module(obs_module_t **module, const char *path,
mod.module = os_dlopen(path);
if (!mod.module) {
blog(LOG_WARNING, "Module '%s' not found", path);
blog(LOG_WARNING, "Module '%s' not loaded", path);
return MODULE_FILE_NOT_FOUND;
}