summaryrefslogtreecommitdiff
path: root/chooser
diff options
context:
space:
mode:
authorRobert Ancell <robert.ancell@canonical.com>2017-09-28 15:33:50 -0400
committerRay Strode <rstrode@redhat.com>2017-10-03 16:18:28 -0400
commit69420ae2c587c75cfb915330d4f60f866281345b (patch)
treec3db9bef9e74a801c0f42e31d0a1b8ab6b78800c /chooser
parente6f5fa6d95e2661477471c6ff1a6a0c379421785 (diff)
downloadgdm-69420ae2c587c75cfb915330d4f60f866281345b.tar.gz
Use standard exit codes.
Use EXIT_ defines for readibility. There were some exit codes > 1, but they don't seem to be checked by any of the parent process code. This does mean that the logs might have changed, but modern logging techniques have probably made this obsolete. https://bugzilla.gnome.org/show_bug.cgi?id=788307
Diffstat (limited to 'chooser')
-rw-r--r--chooser/chooser-main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/chooser/chooser-main.c b/chooser/chooser-main.c
index 54aebf17..6f94c62d 100644
--- a/chooser/chooser-main.c
+++ b/chooser/chooser-main.c
@@ -229,7 +229,7 @@ main (int argc, char *argv[])
session = gdm_chooser_session_new ();
if (session == NULL) {
g_critical ("Unable to create chooser session");
- exit (1);
+ exit (EXIT_FAILURE);
}
error = NULL;
@@ -237,7 +237,7 @@ main (int argc, char *argv[])
if (! res) {
g_warning ("Unable to start chooser session: %s", error->message);
g_error_free (error);
- exit (1);
+ exit (EXIT_FAILURE);
}
gtk_main ();