summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-find-window.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-05-31 16:44:33 +0000
committernicm <nicm@openbsd.org>2017-05-31 16:44:33 +0000
commit1b25b15729b6d5e39630ff24e5805e5f97cb879c (patch)
tree0fcde4bd8e419663cc71420d2ad877e4942f3ee2 /usr.bin/tmux/cmd-find-window.c
parentPlug memleak in rcs_translate_tag() that was causing havoc on large repos. (diff)
downloadwireguard-openbsd-1b25b15729b6d5e39630ff24e5805e5f97cb879c.tar.xz
wireguard-openbsd-1b25b15729b6d5e39630ff24e5805e5f97cb879c.zip
Shut up a warning.
Diffstat (limited to 'usr.bin/tmux/cmd-find-window.c')
-rw-r--r--usr.bin/tmux/cmd-find-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-find-window.c b/usr.bin/tmux/cmd-find-window.c
index 8809b5582c6..52a80fd16b6 100644
--- a/usr.bin/tmux/cmd-find-window.c
+++ b/usr.bin/tmux/cmd-find-window.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-find-window.c,v 1.43 2017/05/30 21:44:59 nicm Exp $ */
+/* $OpenBSD: cmd-find-window.c,v 1.44 2017/05/31 16:44:33 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -79,7 +79,7 @@ cmd_find_window_exec(struct cmd *self, struct cmdq_item *item)
xasprintf(&filter, "#{C:%s}", s);
else if (N)
xasprintf(&filter, "#{m:*%s*,#{window_name}}", s);
- else if (T)
+ else
xasprintf(&filter, "#{m:*%s*,#{pane_title}}", s);
new_args = args_parse("", 1, &argv);