diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-debugger.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/empathy-debugger.c b/src/empathy-debugger.c index a7ebdf117..cb28a599d 100644 --- a/src/empathy-debugger.c +++ b/src/empathy-debugger.c @@ -53,6 +53,7 @@ main (int argc, char **argv) { GtkApplication *app; + gint retval; g_thread_init (NULL); empathy_gtk_init (); @@ -66,8 +67,9 @@ main (int argc, gtk_window_set_default_icon_name ("empathy"); textdomain (GETTEXT_PACKAGE); - g_application_run (G_APPLICATION (app), argc, argv); + retval = g_application_run (G_APPLICATION (app), argc, argv); g_object_unref (app); - return EXIT_SUCCESS; + + return retval; } |