From: Lennart Poettering Date: Fri, 23 Apr 2010 02:10:13 +0000 (+0200) Subject: systemadm: when systemd isn't found, quit right-away X-Git-Tag: v1~481 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=703b48af7046c4529ffee4ce37a4be833219e176 systemadm: when systemd isn't found, quit right-away --- diff --git a/systemadm.vala b/systemadm.vala index 6bcb5f6a8..bf25adbf3 100644 --- a/systemadm.vala +++ b/systemadm.vala @@ -702,12 +702,13 @@ int main (string[] args) { MainWindow window = new MainWindow(); window.show_all(); + + Gtk.main(); } catch (DBus.Error e) { message("%s", e.message); } catch (GLib.Error e) { message("%s", e.message); } - Gtk.main(); return 0; }