lxccontainer: fix indendation

parent 023d07ee
...@@ -855,16 +855,16 @@ struct lxc_container { ...@@ -855,16 +855,16 @@ struct lxc_container {
/*! /*!
* \brief Mount the host's path `source` onto the container's path `target`. * \brief Mount the host's path `source` onto the container's path `target`.
*/ */
int (*mount)(struct lxc_container *c, int (*mount)(struct lxc_container *c, const char *source,
const char *source, const char *target, const char *target, const char *filesystemtype,
const char *filesystemtype, unsigned long mountflags, unsigned long mountflags, const void *data,
const void *data, struct lxc_mount *mnt); struct lxc_mount *mnt);
/*! /*!
* \brief Unmount the container's path `target`. * \brief Unmount the container's path `target`.
*/ */
int (*umount)(struct lxc_container *c, const char *target, int (*umount)(struct lxc_container *c, const char *target,
unsigned long mountflags, struct lxc_mount *mnt); unsigned long mountflags, struct lxc_mount *mnt);
}; };
/*! /*!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment