aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index cdf403266..c19fc9324 100644
--- a/src/main.c
+++ b/src/main.c
@@ -231,6 +231,8 @@ int main(int argc, char *argv[])
Options options;
clock_t start;
bool create_db;
+ bool success;
+ GError *error = NULL;
daemonize_close_stdin();
@@ -288,7 +290,10 @@ int main(int argc, char *argv[])
create_db = !openDB(&options);
#ifdef ENABLE_SQLITE
- sticker_global_init(config_get_path(CONF_STICKER_FILE));
+ success = sticker_global_init(config_get_path(CONF_STICKER_FILE),
+ &error);
+ if (!success)
+ g_error("%s", error->message);
#endif
command_init();