diff options
Diffstat (limited to 'openbox/engine.c')
| -rw-r--r-- | openbox/engine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/engine.c b/openbox/engine.c index 3457da18..b1873abc 100644 --- a/openbox/engine.c +++ b/openbox/engine.c @@ -23,13 +23,13 @@ static gboolean load(char *name) g_assert(module == NULL); path = g_build_filename(ENGINEDIR, name, NULL); - module = g_module_open(path, G_MODULE_BIND_LAZY); + module = g_module_open(path, 0); g_free(path); if (module == NULL) { path = g_build_filename(g_get_home_dir(), ".openbox", "engines", name, NULL); - module = g_module_open(path, G_MODULE_BIND_LAZY); + module = g_module_open(path, 0); g_free(path); } |
