From abfb9656ef4404cff7847032cd4722eb0af55ee3 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 22 Oct 2014 23:18:53 +0000 Subject: Fix some spacing nits. --- key-bindings.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'key-bindings.c') diff --git a/key-bindings.c b/key-bindings.c index 13ba9f25..00f73d73 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -167,16 +167,16 @@ key_bindings_init(void) RB_INIT(&key_bindings); - cmdq = cmdq_new (NULL); + cmdq = cmdq_new(NULL); for (i = 0; i < nitems(defaults); i++) { error = cmd_string_parse(defaults[i], &cmdlist, "", i, &cause); if (error != 0) fatalx("bad default key"); - cmdq_run (cmdq, cmdlist); - cmd_list_free (cmdlist); + cmdq_run(cmdq, cmdlist); + cmd_list_free(cmdlist); } - cmdq_free (cmdq); + cmdq_free(cmdq); } void -- cgit