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-Url: http://git.ipfire.org/?a=commitdiff_plain;h=703b48af7046c4529ffee4ce37a4be833219e176;p=people%2Fms%2Fsystemd.git systemadm: when systemd isn't found, quit right-away --- diff --git a/systemadm.vala b/systemadm.vala index 6bcb5f6..bf25adb 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; }