diff options
author | nicm <nicm> | 2021-08-20 17:50:42 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-08-20 17:50:42 +0000 |
commit | e463e8622dff28394145868a124b10101afc2269 (patch) | |
tree | 8594a3d96ee7f41595eb72db991b753d3900f986 /cmd-list-keys.c | |
parent | 01b13de655cae6cd619bf872d16f82600ff6081e (diff) | |
download | rtmux-e463e8622dff28394145868a124b10101afc2269.tar.gz rtmux-e463e8622dff28394145868a124b10101afc2269.tar.bz2 rtmux-e463e8622dff28394145868a124b10101afc2269.zip |
Remove stray spaces after function names.
Diffstat (limited to 'cmd-list-keys.c')
-rw-r--r-- | cmd-list-keys.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd-list-keys.c b/cmd-list-keys.c index 91715f93..dbb510fb 100644 --- a/cmd-list-keys.c +++ b/cmd-list-keys.c @@ -211,7 +211,7 @@ cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item) repeat = 0; tablewidth = keywidth = 0; - table = key_bindings_first_table (); + table = key_bindings_first_table(); while (table != NULL) { if (tablename != NULL && strcmp(table->name, tablename) != 0) { table = key_bindings_next_table(table); @@ -243,8 +243,7 @@ cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item) tmpsize = 256; tmp = xmalloc(tmpsize); - - table = key_bindings_first_table (); + table = key_bindings_first_table(); while (table != NULL) { if (tablename != NULL && strcmp(table->name, tablename) != 0) { table = key_bindings_next_table(table); |