=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-list-keys.c,v retrieving revision 1.63 retrieving revision 1.64 diff -u -r1.63 -r1.64 --- src/usr.bin/tmux/cmd-list-keys.c 2021/04/13 16:00:47 1.63 +++ src/usr.bin/tmux/cmd-list-keys.c 2021/08/20 17:50:42 1.64 @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-list-keys.c,v 1.63 2021/04/13 16:00:47 nicm Exp $ */ +/* $OpenBSD: cmd-list-keys.c,v 1.64 2021/08/20 17:50:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -211,7 +211,7 @@ 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 @@ 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);