diff options
author | 2014-10-20 23:57:13 +0000 | |
---|---|---|
committer | 2014-10-20 23:57:13 +0000 | |
commit | 74d4b937f51b5db0e6007b319cad3987fa67a2fb (patch) | |
tree | d8b7a1894fc57f2c4f1372b8f5748b2914a0ab68 /usr.bin/tmux/cmd-queue.c | |
parent | Move template defines back into .c files. (diff) | |
download | wireguard-openbsd-74d4b937f51b5db0e6007b319cad3987fa67a2fb.tar.xz wireguard-openbsd-74d4b937f51b5db0e6007b319cad3987fa67a2fb.zip |
Better format for printf format attributes.
Diffstat (limited to 'usr.bin/tmux/cmd-queue.c')
-rw-r--r-- | usr.bin/tmux/cmd-queue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-queue.c b/usr.bin/tmux/cmd-queue.c index 5313cb09451..9200f208cc3 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.17 2014/09/01 21:50:18 nicm Exp $ */ +/* $OpenBSD: cmd-queue.c,v 1.18 2014/10/20 23:57:13 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott <nicm@users.sourceforge.net> @@ -57,7 +57,7 @@ cmdq_free(struct cmd_q *cmdq) } /* Show message from command. */ -void printflike2 +void cmdq_print(struct cmd_q *cmdq, const char *fmt, ...) { struct client *c = cmdq->client; @@ -87,7 +87,7 @@ cmdq_print(struct cmd_q *cmdq, const char *fmt, ...) } /* Show error from command. */ -void printflike2 +void cmdq_error(struct cmd_q *cmdq, const char *fmt, ...) { struct client *c = cmdq->client; |