commit | c9e52be3f4d98943b67fbbe5d9a7ccd823b88326 | [log] [tgz] |
---|---|---|
author | hasso <hasso> | Sun Sep 26 16:09:34 2004 +0000 |
committer | hasso <hasso> | Sun Sep 26 16:09:34 2004 +0000 |
tree | d4045a946af3be8bbdc303162778e8c44057e2f9 | |
parent | e473b032b860444b9656cee1654b0120f77b52b1 [diff] [blame] |
Compiler warnings fixes.
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index 92918bd..27a3c2e 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c
@@ -2584,7 +2584,7 @@ b = buffer_new (1024); for (i = 1; i < argc; i++) { - buffer_putstr (b, (u_char *)argv[i]); + buffer_putstr (b, argv[i]); buffer_putc (b, ' '); } buffer_putc (b, '\0');