summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/server-client.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-02-01 23:43:24 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-02-01 23:43:24 +0000
commitbdef2fadb9109ca7d68769232896a3314c2e0d84 (patch)
treea30d354b5130de70ec98d4b862993673a1777129 /usr.bin/tmux/server-client.c
parent87b2beea44b6acdd5b0cdd4e3d9de5379f38b8aa (diff)
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);