]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journal: fix sort order of header includes 10831/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 19 Nov 2018 12:29:16 +0000 (13:29 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 20 Nov 2018 06:27:37 +0000 (07:27 +0100)
src/journal/journal-file.c
src/journal/journal-file.h

index 390996a8150d71161317b604cd5b1bacb7edf4b4..1174a52a661e60cfa5e25e7f3d9b42ce22082882 100644 (file)
@@ -10,6 +10,8 @@
 #include <sys/uio.h>
 #include <unistd.h>
 
+#include "sd-event.h"
+
 #include "alloc-util.h"
 #include "btrfs-util.h"
 #include "chattr-util.h"
@@ -23,7 +25,6 @@
 #include "parse-util.h"
 #include "path-util.h"
 #include "random-util.h"
-#include "sd-event.h"
 #include "set.h"
 #include "stat-util.h"
 #include "string-util.h"
index 09b7ba090d3cd7a484b7e0e0a20cace2b32bd779..29e324d8cfbb6d1a2116a592f89f7997af66678f 100644 (file)
@@ -4,16 +4,16 @@
 #include <inttypes.h>
 
 #if HAVE_GCRYPT
-#include <gcrypt.h>
+#  include <gcrypt.h>
 #endif
 
+#include "sd-event.h"
 #include "sd-id128.h"
 
 #include "hashmap.h"
 #include "journal-def.h"
 #include "macro.h"
 #include "mmap-cache.h"
-#include "sd-event.h"
 #include "sparse-endian.h"
 
 typedef struct JournalMetrics {