diff options
author | nicm <nicm> | 2017-05-11 07:34:54 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-05-11 07:34:54 +0000 |
commit | 349cdd6110b548db2f47bd458fef257260052dbc (patch) | |
tree | 53aceb4afcd42d464d404879ce26b5520d2488bf /tmux.h | |
parent | c54a5b3690e985797a1fcdd3c5e49b758efd4825 (diff) | |
download | rtmux-349cdd6110b548db2f47bd458fef257260052dbc.tar.gz rtmux-349cdd6110b548db2f47bd458fef257260052dbc.tar.bz2 rtmux-349cdd6110b548db2f47bd458fef257260052dbc.zip |
Make environ_log prefix take a format.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |