From: Christian Brauner Date: Tue, 24 Jul 2018 13:09:13 +0000 (+0200) Subject: lxccontainer: fix indendation X-Git-Tag: lxc-3.1.0~193^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=095b5c7d2e80cda9a9f370c7a2acd157856b14ac;p=thirdparty%2Flxc.git lxccontainer: fix indendation Signed-off-by: Christian Brauner --- diff --git a/src/lxc/lxccontainer.h b/src/lxc/lxccontainer.h index 3eb62e0d9..fdabbe474 100644 --- a/src/lxc/lxccontainer.h +++ b/src/lxc/lxccontainer.h @@ -855,16 +855,16 @@ struct lxc_container { /*! * \brief Mount the host's path `source` onto the container's path `target`. */ - int (*mount)(struct lxc_container *c, - const char *source, const char *target, - const char *filesystemtype, unsigned long mountflags, - const void *data, struct lxc_mount *mnt); + int (*mount)(struct lxc_container *c, const char *source, + const char *target, const char *filesystemtype, + unsigned long mountflags, const void *data, + struct lxc_mount *mnt); /*! * \brief Unmount the container's path `target`. */ int (*umount)(struct lxc_container *c, const char *target, - unsigned long mountflags, struct lxc_mount *mnt); + unsigned long mountflags, struct lxc_mount *mnt); }; /*!