summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-05-29 21:11:30 +0200
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-05-29 21:12:26 +0200
commit56f342f3975ceda4d93736441d861d37ff10ea12 (patch)
treed4f8d5876d519e3a7b2c0dbda149d6507fea0aee
parent9dd008df456cdf564e01eae3c7ee8be3bf7162ce (diff)
console: use signal-util.h and reorder includes
Missed this one from the previous commit
-rw-r--r--src/console/consoled-manager.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/console/consoled-manager.c b/src/console/consoled-manager.c
index b288239cae..e560dcf524 100644
--- a/src/console/consoled-manager.c
+++ b/src/console/consoled-manager.c
@@ -21,16 +21,17 @@
#include <errno.h>
#include <stdlib.h>
-#include "consoled.h"
-#include "grdev.h"
-#include "idev.h"
-#include "log.h"
#include "sd-bus.h"
#include "sd-event.h"
#include "sd-login.h"
+#include "log.h"
+#include "signal-util.h"
+#include "util.h"
+#include "consoled.h"
+#include "idev.h"
+#include "grdev.h"
#include "sysview.h"
#include "unifont.h"
-#include "util.h"
int manager_new(Manager **out) {
_cleanup_(manager_freep) Manager *m = NULL;