diff options
author | 2015-12-11 12:27:36 +0000 | |
---|---|---|
committer | 2015-12-11 12:27:36 +0000 | |
commit | 229bdecfd990c2b9c38421eeda34fc1f20a08adc (patch) | |
tree | afcb4b1a3e169bc16ed1c3880ee342d43994d4fe /usr.bin/tmux/names.c | |
parent | Work around Nvidia EHCI controllers bugs. (diff) | |
download | wireguard-openbsd-229bdecfd990c2b9c38421eeda34fc1f20a08adc.tar.xz wireguard-openbsd-229bdecfd990c2b9c38421eeda34fc1f20a08adc.zip |
Add cmdq as an argument to format_create and add a format for the
command name (will also be used for more later).
Diffstat (limited to 'usr.bin/tmux/names.c')
-rw-r--r-- | usr.bin/tmux/names.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/names.c b/usr.bin/tmux/names.c index baaf7ae7a78..a865e5afa92 100644 --- a/usr.bin/tmux/names.c +++ b/usr.bin/tmux/names.c @@ -1,4 +1,4 @@ -/* $OpenBSD: names.c,v 1.32 2015/12/08 08:34:18 nicm Exp $ */ +/* $OpenBSD: names.c,v 1.33 2015/12/11 12:27:36 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -118,7 +118,7 @@ format_window_name(struct window *w) struct format_tree *ft; char *fmt, *name; - ft = format_create(0); + ft = format_create(NULL, 0); format_defaults_window(ft, w); format_defaults_pane(ft, w->active); |