summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gclue-config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gclue-config.c b/src/gclue-config.c
index b769b57..70822ed 100644
--- a/src/gclue-config.c
+++ b/src/gclue-config.c
@@ -571,7 +571,7 @@ gclue_config_init (GClueConfig *config)
if (error != NULL) {
g_warning ("Failed to open %s: %s",
CONFIG_D_DIRECTORY, error->message);
- return;
+ goto out;
}
files = g_array_new (FALSE, FALSE, sizeof(char *));
@@ -592,7 +592,7 @@ gclue_config_init (GClueConfig *config)
NULL);
load_config_file (config, path, FALSE);
}
-
+out:
gclue_config_print (config);
}