diff options
author | Ted Gould <ted@canonical.com> | 2009-10-08 19:17:15 -0400 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-08 19:17:15 -0400 |
commit | 4ea28685563e8f7267ca75c28541582b4f3e544b (patch) | |
tree | b19ca0e1a6f70107f931639a0bd3e3e024f3e960 /libindicator | |
parent | b2942d9cc8631275fe8abdc53bd518b5b9f9ffcc (diff) | |
download | libayatana-indicator-4ea28685563e8f7267ca75c28541582b4f3e544b.tar.gz libayatana-indicator-4ea28685563e8f7267ca75c28541582b4f3e544b.tar.bz2 libayatana-indicator-4ea28685563e8f7267ca75c28541582b4f3e544b.zip |
Truth again. Keeps bitting back. I shouldn't of lied in the 2nd grade, I confess! No more, please.
Diffstat (limited to 'libindicator')
-rw-r--r-- | libindicator/indicator-object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index 9fc439e..a70a3ec 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -95,7 +95,7 @@ indicator_object_new_from_file (const gchar * file) GModule * module = g_module_open(file, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL); - if(module != NULL) { + if(module == NULL) { g_warning("Unable to load module: %s", file); return NULL; } |