diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2020-03-11 08:58:51 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2020-04-08 08:56:52 +0200 |
commit | 9ab0cf5830bf9680cabd8ddc24b26c34643e148b (patch) | |
tree | a6064bab4a8c99d3a5b8e6d5dd9bbbdda74ec95b /bgpd/bgp_vty.h | |
parent | bgpd: add show bgp l2vpn evpn statistics [json] support (diff) | |
download | frr-9ab0cf5830bf9680cabd8ddc24b26c34643e148b.tar.xz frr-9ab0cf5830bf9680cabd8ddc24b26c34643e148b.zip |
bgpd: take into account code style recommendations.
take into account polychaeta tips ono code style.
also, take into account miscellaneous code style recommandations like
braces usage.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'bgpd/bgp_vty.h')
-rw-r--r-- | bgpd/bgp_vty.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bgpd/bgp_vty.h b/bgpd/bgp_vty.h index 3f06584cc..d6ca198d0 100644 --- a/bgpd/bgp_vty.h +++ b/bgpd/bgp_vty.h @@ -175,9 +175,8 @@ extern int bgp_vty_find_and_parse_afi_safi_bgp(struct vty *vty, int argc, int *idx, afi_t *afi, safi_t *safi, struct bgp **bgp, bool use_json); -int bgp_vty_find_and_parse_bgp(struct vty *vty, - struct cmd_token **argv, int argc, - struct bgp **bgp, bool use_json); +int bgp_vty_find_and_parse_bgp(struct vty *vty, struct cmd_token **argv, + int argc, struct bgp **bgp, bool use_json); extern int bgp_show_summary_vty(struct vty *vty, const char *name, afi_t afi, safi_t safi, bool show_failed, bool use_json); |