From 10d60faba5d06db707a752be47dbb12abd4b8168 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 14 Mar 2019 23:14:27 +0000 Subject: Store the time in the format tree rather than passing it around. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 87873bf6..95e59e36 100644 --- a/tmux.h +++ b/tmux.h @@ -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 *, -- cgit