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: 0.git+20100605+dfd8ee-1~84 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=703b48af7046c4529ffee4ce37a4be833219e176;p=systemd systemadm: when systemd isn't found, quit right-away --- diff --git a/systemadm.vala b/systemadm.vala index 6bcb5f6a..bf25adbf 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; }