diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-23 13:03:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-23 13:03:47 +0000 |
commit | 57eb334d5b989642c84b974908c43c729983d1b8 (patch) | |
tree | 5600670a3688454d211b34ff8d45419bcd06d94c /cmd-show-messages.c | |
parent | 5f904aa35002246ee1005e3849455ccbdc321781 (diff) | |
parent | ee0f8adfac76cdf21cfd2c0b503d8d66dcb883cc (diff) | |
download | rtmux-57eb334d5b989642c84b974908c43c729983d1b8.tar.gz rtmux-57eb334d5b989642c84b974908c43c729983d1b8.tar.bz2 rtmux-57eb334d5b989642c84b974908c43c729983d1b8.zip |
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
Diffstat (limited to 'cmd-show-messages.c')
-rw-r--r-- | cmd-show-messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-show-messages.c b/cmd-show-messages.c index d8c18519..728e170d 100644 --- a/cmd-show-messages.c +++ b/cmd-show-messages.c @@ -48,7 +48,7 @@ cmd_show_messages_exec(struct cmd *self, struct cmd_ctx *ctx) char *tim; u_int i; - 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); for (i = 0; i < ARRAY_LENGTH(&c->message_log); i++) { |