summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server-client.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2015-02-01 23:43:23 +0000
committernicm <nicm@openbsd.org>2015-02-01 23:43:23 +0000
commit2ef85aa1c1feffc316b7ebfa9ca96e182572e402 (patch)
tree9a1c344511fe298b717d8f310cc34398fc5a7b27 /usr.bin/tmux/server-client.c
parentfix .Eo/.Ec spacing (diff)
downloadwireguard-openbsd-2ef85aa1c1feffc316b7ebfa9ca96e182572e402.tar.xz
wireguard-openbsd-2ef85aa1c1feffc316b7ebfa9ca96e182572e402.zip
Remove two unused arguments from status_replace.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r--usr.bin/tmux/server-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c
index 4e857c52646..eea79773992 100644
--- a/usr.bin/tmux/server-client.c
+++ b/usr.bin/tmux/server-client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server-client.c,v 1.126 2014/10/22 23:18:53 nicm Exp $ */
+/* $OpenBSD: server-client.c,v 1.127 2015/02/01 23:43:23 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -779,7 +779,7 @@ server_client_set_title(struct client *c)
template = options_get_string(&s->options, "set-titles-string");
- title = status_replace(c, NULL, NULL, NULL, template, time(NULL), 1);
+ title = status_replace(c, NULL, template, time(NULL), 1);
if (c->title == NULL || strcmp(title, c->title) != 0) {
free(c->title);
c->title = xstrdup(title);