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/options.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/options.c')
-rw-r--r-- | usr.bin/tmux/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options.c b/usr.bin/tmux/options.c index b67d94ad703..5562002d490 100644 --- a/usr.bin/tmux/options.c +++ b/usr.bin/tmux/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.10 2014/01/28 23:07:09 nicm Exp $ */ +/* $OpenBSD: options.c,v 1.11 2014/10/20 23:57:14 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -99,7 +99,7 @@ options_remove(struct options *oo, const char *name) free(o); } -struct options_entry *printflike3 +struct options_entry * options_set_string(struct options *oo, const char *name, const char *fmt, ...) { struct options_entry *o; |