From 3afb04af72b24948e033a22800957a4564cce23c Mon Sep 17 00:00:00 2001 From: Travis Reitter Date: Thu, 28 Oct 2010 09:50:29 -0700 Subject: empathy-debugger: use the proper exit status --- src/empathy-debugger.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3