Merge pull request #1148 from SuslikV/patch-1

libobs: Fix log message
This commit is contained in:
Jim 2018-01-16 05:52:49 -08:00 committed by GitHub
commit b264f8885a
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;
}