diff options
author | 2019-03-14 23:14:27 +0000 | |
---|---|---|
committer | 2019-03-14 23:14:27 +0000 | |
commit | a7d9196c0eb95f9e9ed312d77e46a1d9cd381d6d (patch) | |
tree | c17a2af4a79d510ef355860e8b571103c67d4323 /usr.bin/tmux/tmux.h | |
parent | Remove some unnecessary temporary variables and be much less strict (diff) | |
download | wireguard-openbsd-a7d9196c0eb95f9e9ed312d77e46a1d9cd381d6d.tar.xz wireguard-openbsd-a7d9196c0eb95f9e9ed312d77e46a1d9cd381d6d.zip |
Store the time in the format tree rather than passing it around.
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 d779309b26c..5827ebd4dbb 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.864 2019/03/14 09:53:52 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.865 2019/03/14 23:14:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1585,7 +1585,7 @@ struct format_tree *format_create(struct client *, struct cmdq_item *, int, void format_free(struct format_tree *); void printflike(3, 4) format_add(struct format_tree *, const char *, const char *, ...); -char *format_expand_time(struct format_tree *, const char *, time_t); +char *format_expand_time(struct format_tree *, const char *); char *format_expand(struct format_tree *, const char *); char *format_single(struct cmdq_item *, const char *, struct client *, struct session *, struct winlink *, |