diff options
author | 2017-05-11 07:34:54 +0000 | |
---|---|---|
committer | 2017-05-11 07:34:54 +0000 | |
commit | 511eaaabb7005f76f5bd6e1f23e86120af38977f (patch) | |
tree | b20ecf85198da804ea73e390773750d328647fcd /usr.bin/tmux/tmux.h | |
parent | typo, spotted by dhill. (diff) | |
download | wireguard-openbsd-511eaaabb7005f76f5bd6e1f23e86120af38977f.tar.xz wireguard-openbsd-511eaaabb7005f76f5bd6e1f23e86120af38977f.zip |
Make environ_log prefix take a format.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 91cec8787e5..4baa3061c77 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.763 2017/05/10 16:48:36 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.764 2017/05/11 07:34:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1621,7 +1621,7 @@ void environ_put(struct environ *, const char *); void environ_unset(struct environ *, const char *); void environ_update(struct options *, struct environ *, struct environ *); void environ_push(struct environ *); -void environ_log(struct environ *, const char *); +void printflike(2, 3) environ_log(struct environ *, const char *, ...); struct environ *environ_for_session(struct session *, int); /* tty.c */ |