diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-plugin-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-plugin-manager.c b/src/mm-plugin-manager.c index 3faf169b..5a241793 100644 --- a/src/mm-plugin-manager.c +++ b/src/mm-plugin-manager.c @@ -1599,7 +1599,7 @@ load_plugin (const gchar *path) /* Get printable UTF-8 string of the path */ path_display = g_filename_display_name (path); - module = g_module_open (path, G_MODULE_BIND_LAZY); + module = g_module_open (path, 0); if (!module) { mm_warn ("[plugin manager] could not load plugin '%s': %s", path_display, g_module_error ()); goto out; @@ -1660,7 +1660,7 @@ load_shared (const gchar *path) /* Get printable UTF-8 string of the path */ path_display = g_filename_display_name (path); - module = g_module_open (path, G_MODULE_BIND_LAZY); + module = g_module_open (path, 0); if (!module) { mm_warn ("[plugin manager] could not load shared '%s': %s", path_display, g_module_error ()); goto out; |