summaryrefslogtreecommitdiffstats
path: root/cmd-display-panes.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-03-24 09:27:19 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-03-24 09:27:19 +0000
commitbb8457b166635bc8d069012bb33d94e44178bfdc (patch)
treefb327f1e877f6663043d8b8bb66b0513cb2146cb /cmd-display-panes.c
parent3eae71b5b28cf591f6cff652e2f2c67be394c040 (diff)
Fix error reporting for client commands by adding a flag to
cmd_find_client to tell it whether or not to show errors, sometimes it's needed and sometimes not.
Diffstat (limited to 'cmd-display-panes.c')
-rw-r--r--cmd-display-panes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-display-panes.c b/cmd-display-panes.c
index 5f0893d4..b3e67fd2 100644
--- a/cmd-display-panes.c
+++ b/cmd-display-panes.c
@@ -42,7 +42,7 @@ cmd_display_panes_exec(struct cmd *self, struct cmd_ctx *ctx)
struct args *args = self->args;
struct client *c;
- if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL)
+ if ((c = cmd_find_client(ctx, args_get(args, 't'), 0)) == NULL)
return (CMD_RETURN_ERROR);
server_set_identify(c);