summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorajs <ajs>2004-11-26 13:22:38 +0000
committerajs <ajs>2004-11-26 13:22:38 +0000
commit546e20d6754a0a4c6bc48d642b5bfb4a3db6d7c3 (patch)
tree3bd96758136cff028812ede48132ae052d4a55cd /lib
parentb3c8c4650216e128189d26755b93f711b5be9327 (diff)
Remove unused va_list variable that was introduced by mistake in the last patch
to stdarg handling.
Diffstat (limited to 'lib')
-rw-r--r--lib/vty.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/vty.c b/lib/vty.c
index 2f3bac2e..bf1eec38 100644
--- a/lib/vty.c
+++ b/lib/vty.c
@@ -114,8 +114,6 @@ vty_out (struct vty *vty, const char *format, ...)
{
while (1)
{
- va_list ac;
-
if (len > -1)
size = len + 1;
else