diff options
author | Dave Barach <dave@barachs.net> | 2016-08-05 18:09:54 -0400 |
---|---|---|
committer | Dave Barach <dave@barachs.net> | 2016-08-05 18:10:06 -0400 |
commit | a8d77eda738855480c3028664028c7a448d52424 (patch) | |
tree | c3e30344155ab5aef053e2dd57bc89bb1349bda3 /vpp/vpp-api/vpe_msg_enum.h | |
parent | 310f7fe7a60467569f9d62d97847bc36dd5eb4ca (diff) |
VPP-237 Coding standards cleanup
Change-Id: I239143f920285050ad85244ece6893236195534f
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'vpp/vpp-api/vpe_msg_enum.h')
-rw-r--r-- | vpp/vpp-api/vpe_msg_enum.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/vpp/vpp-api/vpe_msg_enum.h b/vpp/vpp-api/vpe_msg_enum.h index fa194ee0..1da3ec0c 100644 --- a/vpp/vpp-api/vpe_msg_enum.h +++ b/vpp/vpp-api/vpe_msg_enum.h @@ -18,11 +18,20 @@ #include <vppinfra/byte_order.h> #define vl_msg_id(n,h) n, -typedef enum { - VL_ILLEGAL_MESSAGE_ID=0, +typedef enum +{ + VL_ILLEGAL_MESSAGE_ID = 0, #include <vpp-api/vpe_all_api_h.h> - VL_MSG_FIRST_AVAILABLE, + VL_MSG_FIRST_AVAILABLE, } vl_msg_id_t; #undef vl_msg_id #endif /* included_vpe_msg_enum_h */ + +/* + * fd.io coding-style-patch-verification: ON + * + * Local Variables: + * eval: (c-set-style "gnu") + * End: + */ |