Use enum ofp11_group_type for the 'type' field of struct ofgroup as the enum exactly covers all the valid values of the field.
Signed-off-by: Simon Horman <ho...@verge.net.au> --- v3 * No change v2 * First post --- ofproto/ofproto-provider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/ofproto-provider.h b/ofproto/ofproto-provider.h index 433e030..0b8a5e5 100644 --- a/ofproto/ofproto-provider.h +++ b/ofproto/ofproto-provider.h @@ -320,7 +320,7 @@ struct ofgroup { struct hmap_node hmap_node; /* In struct ofproto's "groups" hmap. */ struct ofproto *ofproto; /* The ofproto that contains this group. */ uint32_t group_id; - uint8_t type; /* One of OFPGT_*. */ + enum ofp11_group_type type; /* One of OFPGT_*. */ long long int created; /* Creation time. */ long long int modified; /* Time of last modification. */ -- 1.8.4 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev