diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-14 14:52:45 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-14 14:52:45 +0200 |
commit | 2850f0ea580764393ae1253ef87a57d772dafafd (patch) | |
tree | 855a3dca8ef223561892a62f8ef3adef89ff84eb /zebra/debug.c | |
parent | Merge remote-tracking branch 'origin/master' into evpn_plus_struct_attr (diff) | |
download | frr-2850f0ea580764393ae1253ef87a57d772dafafd.tar.xz frr-2850f0ea580764393ae1253ef87a57d772dafafd.zip |
bgpd, zebra: Cleanup warnings from new code
1) Clean up VTY_NEWLINE -> \n
2) Remove usages of VTY_GET_INTEGER
Signed-off-by: Donald Sharp
Diffstat (limited to 'zebra/debug.c')
-rw-r--r-- | zebra/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index 763bf359b..1c3cf9a3d 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -439,7 +439,7 @@ config_write_debug (struct vty *vty) } if (IS_ZEBRA_DEBUG_VXLAN) { - vty_out (vty, "debug zebra vxlan%s", VTY_NEWLINE); + vty_out (vty, "debug zebra vxlan\n"); write++; } return write; |