summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-05-11 07:34:54 +0000
committernicm <nicm@openbsd.org>2017-05-11 07:34:54 +0000
commit511eaaabb7005f76f5bd6e1f23e86120af38977f (patch)
treeb20ecf85198da804ea73e390773750d328647fcd /usr.bin/tmux/tmux.h
parenttypo, spotted by dhill. (diff)
downloadwireguard-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.h4
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 */