summaryrefslogtreecommitdiffstats
path: root/cmd-queue.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-11 13:21:59 +0000
committernicm <nicm>2016-10-11 13:21:59 +0000
commite45401846f0a423bb90ebd3943041a28b2657631 (patch)
tree9d5d914a2e67829e5729f775e6f95fb460c36cbc /cmd-queue.c
parent85d7afaefc1e2cf8008575a776ec70f51d24e1a6 (diff)
Add static in window-*.c and move some internal functions out of tmux.h.
Diffstat (limited to 'cmd-queue.c')
-rw-r--r--cmd-queue.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-queue.c b/cmd-queue.c
index e9073c92..5a81f88e 100644
--- a/cmd-queue.c
+++ b/cmd-queue.c
@@ -26,6 +26,7 @@
#include "tmux.h"
static enum cmd_retval cmdq_continue_one(struct cmd_q *);
+static void cmdq_flush(struct cmd_q *);
/* Create new command queue. */
struct cmd_q *
@@ -319,7 +320,7 @@ out:
}
/* Flush command queue. */
-void
+static void
cmdq_flush(struct cmd_q *cmdq)
{
struct cmd_q_item *item, *item1;