* vtysh.c: Fix warning by casting rl_bind_key 2. argument correctly.
* extract.pl.in: Fix warning - add isisd/topology to the includes.
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index 13fd953..fa48a44 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -2099,7 +2099,7 @@
vtysh_readline_init (void)
{
/* readline related settings. */
- rl_bind_key ('?', vtysh_rl_describe);
+ rl_bind_key ('?', (Function *) vtysh_rl_describe);
rl_completion_entry_function = vtysh_completion_entry_function;
rl_attempted_completion_function = (CPPFunction *)new_completion;
/* do not append space after completion. It will be appended