attach_options: explicitly number enums

parent 95ef7b2f
...@@ -13,8 +13,8 @@ extern "C" { ...@@ -13,8 +13,8 @@ extern "C" {
* LXC environment policy. * LXC environment policy.
*/ */
typedef enum lxc_attach_env_policy_t { typedef enum lxc_attach_env_policy_t {
LXC_ATTACH_KEEP_ENV, /*!< Retain the environment */ LXC_ATTACH_KEEP_ENV = 0, /*!< Retain the environment */
LXC_ATTACH_CLEAR_ENV /*!< Clear the environment */ LXC_ATTACH_CLEAR_ENV = 1, /*!< Clear the environment */
} lxc_attach_env_policy_t; } lxc_attach_env_policy_t;
enum { enum {
......
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