From 6ef1fc6d02d2cf3be48dc5b62e12a4e95a86b679 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 11 Jul 2025 14:25:40 +0200 Subject: [PATCH] nspawn: properly order include of constants.h --- src/nspawn/nspawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index e21d0ca29b..64b5ca87a5 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -12,7 +12,6 @@ #include #include #include -#include "constants.h" #if HAVE_SELINUX #include @@ -38,6 +37,7 @@ #include "cgroup-util.h" #include "chase.h" #include "common-signal.h" +#include "constants.h" #include "copy.h" #include "cpu-set-util.h" #include "daemon-util.h"