summaryrefslogtreecommitdiff
path: root/src/systemd-nspawn/nspawn-mount.c
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-08-01 16:33:32 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-08-01 16:33:32 -0400
commit272b48187cee0b42b6e936ad2c045f13b391f3ad (patch)
tree383049270ccbac5040e4404bbe71ac49d0c423db /src/systemd-nspawn/nspawn-mount.c
parent46277a7844c854210eaa0a3612fa297ec33ddb7b (diff)
find src \( -name '*.h' -o -name '*.c' \) -type f -exec ./fixup_includes {} \;
Diffstat (limited to 'src/systemd-nspawn/nspawn-mount.c')
-rw-r--r--src/systemd-nspawn/nspawn-mount.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/systemd-nspawn/nspawn-mount.c b/src/systemd-nspawn/nspawn-mount.c
index 7e8bd936f2..bb2906e8d7 100644
--- a/src/systemd-nspawn/nspawn-mount.c
+++ b/src/systemd-nspawn/nspawn-mount.c
@@ -17,8 +17,8 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-#include <sys/mount.h>
#include <linux/magic.h>
+#include <sys/mount.h>
#include "basic/alloc-util.h"
#include "basic/cgroup-util.h"
@@ -27,7 +27,6 @@
#include "basic/label.h"
#include "basic/mkdir.h"
#include "basic/mount-util.h"
-#include "nspawn-mount.h"
#include "basic/parse-util.h"
#include "basic/path-util.h"
#include "basic/rm-rf.h"
@@ -38,6 +37,8 @@
#include "basic/user-util.h"
#include "basic/util.h"
+#include "nspawn-mount.h"
+
CustomMount* custom_mount_add(CustomMount **l, unsigned *n, CustomMountType t) {
CustomMount *c, *ret;