Do not pass flags to g_module_open(NULL)

The flags are ignored when opening the main module, so we
should pass 0 to avoid confusion when reading the source.
This commit is contained in:
Emmanuele Bassi
2009-11-06 14:04:36 +00:00
parent 4262f79f34
commit 30bc36082e
4 changed files with 7 additions and 7 deletions

View File

@ -906,7 +906,7 @@ clutter_script_connect_signals (ClutterScript *script,
}
cd = g_new (ConnectData, 1);
cd->module = g_module_open (NULL, G_MODULE_BIND_LAZY);
cd->module = g_module_open (NULL, 0);
cd->data = user_data;
clutter_script_connect_signals_full (script,