diff options
author | nicm <nicm> | 2019-03-14 23:14:27 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-14 23:14:27 +0000 |
commit | 10d60faba5d06db707a752be47dbb12abd4b8168 (patch) | |
tree | 6d5b681af6fde11533c5bd1f809e94e0ff94246d /tmux.h | |
parent | bace79a5715932f093d4c17db5d49af8e6594916 (diff) | |
download | rtmux-10d60faba5d06db707a752be47dbb12abd4b8168.tar.gz rtmux-10d60faba5d06db707a752be47dbb12abd4b8168.tar.bz2 rtmux-10d60faba5d06db707a752be47dbb12abd4b8168.zip |
Store the time in the format tree rather than passing it around.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 *, |