* vty.c (vty_hello): add cast to quiet lint (from David Young)
(patch-lint)
+2005-12-29 Greg Troxel <gdt@fnord.ir.bbn.com>
+
+ * vty.c (vty_hello): add cast to quiet lint (from David Young)
+
2005-11-26 Paul Jakma <paul.jakma@sun.com>
* buffer.c: (struct buffer_data) change gcc zero array
{
char *s;
/* work backwards to ignore trailling isspace() */
- for (s = buf + strlen (buf); (s > buf) && isspace (*(s - 1));
+ for (s = buf + strlen (buf); (s > buf) && isspace ((int)*(s - 1));
s--);
*s = '\0';
vty_out (vty, "%s%s", buf, VTY_NEWLINE);