diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-11-18 16:01:23 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-11-18 16:01:23 +0000 |
commit | 7fe8edc3962d5c30bf87677ecb2cf8633404f63c (patch) | |
tree | d354de9a04867168c1b296e15c556231f33c03f4 /cmd-list-keys.c | |
parent | f8a1f8843c91ebb1262ec6a000fd495eeb27e179 (diff) | |
parent | 577c0e3e5a79e9f1f860487bc3f411d26758f026 (diff) | |
download | rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.tar.gz rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.tar.bz2 rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-list-keys.c')
-rw-r--r-- | cmd-list-keys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd-list-keys.c b/cmd-list-keys.c index 3b6afa3e..4355f24e 100644 --- a/cmd-list-keys.c +++ b/cmd-list-keys.c @@ -30,7 +30,7 @@ enum cmd_retval cmd_list_keys_exec(struct cmd *, struct cmd_q *); enum cmd_retval cmd_list_keys_table(struct cmd *, struct cmd_q *); -enum cmd_retval cmd_list_keys_commands(struct cmd *, struct cmd_q *); +enum cmd_retval cmd_list_keys_commands(struct cmd_q *); const struct cmd_entry cmd_list_keys_entry = { "list-keys", "lsk", @@ -60,7 +60,7 @@ cmd_list_keys_exec(struct cmd *self, struct cmd_q *cmdq) int repeat, width, tablewidth, keywidth; if (self->entry == &cmd_list_commands_entry) - return (cmd_list_keys_commands(self, cmdq)); + return (cmd_list_keys_commands(cmdq)); if (args_has(args, 't')) return (cmd_list_keys_table(self, cmdq)); @@ -178,7 +178,7 @@ cmd_list_keys_table(struct cmd *self, struct cmd_q *cmdq) } enum cmd_retval -cmd_list_keys_commands(unused struct cmd *self, struct cmd_q *cmdq) +cmd_list_keys_commands(struct cmd_q *cmdq) { const struct cmd_entry **entryp; const struct cmd_entry *entry; |