diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-05-30 12:55:26 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-05-30 12:55:26 +0000 |
commit | afbcc86407a6aa585a859d8d42a1862b2a998ed6 (patch) | |
tree | cad7dae0772e870550ff3344870f6748eba69a1a /usr.bin/tmux/cmd-queue.c | |
parent | 3287dab9dc5ce4e28553513a3f6562a09c271b11 (diff) |
Spacing/style nits.
Diffstat (limited to 'usr.bin/tmux/cmd-queue.c')
-rw-r--r-- | usr.bin/tmux/cmd-queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-queue.c b/usr.bin/tmux/cmd-queue.c index dfed88a5cf4..15c4f7fe567 100644 --- a/usr.bin/tmux/cmd-queue.c +++ b/usr.bin/tmux/cmd-queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-queue.c,v 1.108 2022/05/30 12:48:57 nicm Exp $ */ +/* $OpenBSD: cmd-queue.c,v 1.109 2022/05/30 12:55:25 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -126,7 +126,7 @@ cmdq_new(void) { struct cmdq_list *queue; - queue = xcalloc (1, sizeof *queue); + queue = xcalloc(1, sizeof *queue); TAILQ_INIT (&queue->list); return (queue); } |