summaryrefslogtreecommitdiff
path: root/src/shared/tests.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-10-24 17:05:16 +0200
committerLennart Poettering <lennart@poettering.net>2018-10-24 17:08:12 +0200
commiteca27ebbc84c5aba7869cada588fd144092f3383 (patch)
treee143a317b0861c3cc88cf771be9db1cde9306d85 /src/shared/tests.c
parent2194547e3b09746b095ab75076b1f86779086d39 (diff)
downloadsystemd-eca27ebbc84c5aba7869cada588fd144092f3383.tar.gz
tests: alloc-util.h and fs-util.h are our own headers
Hence include them with "" rather than <>. Also including them twices is a pretty bad idea too.
Diffstat (limited to 'src/shared/tests.c')
-rw-r--r--src/shared/tests.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/tests.c b/src/shared/tests.c
index 10fe6a088c..c6f608fe04 100644
--- a/src/shared/tests.c
+++ b/src/shared/tests.c
@@ -1,7 +1,5 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
-#include <alloc-util.h>
-#include <fs-util.h>
#include <libgen.h>
#include <stdlib.h>
#include <util.h>
@@ -9,6 +7,7 @@
#include "alloc-util.h"
#include "env-util.h"
#include "fileio.h"
+#include "fs-util.h"
#include "log.h"
#include "path-util.h"
#include "strv.h"