From 0c2ab17e91637fdc27f7b8dd5578e15a951e1420 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 5 Jul 2009 08:29:47 +0200 Subject: sticker: use GError for error handling --- src/main.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/main.c') 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(); -- cgit v1.2.3