attach_options: explicitly number enums

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