From 2ef85aa1c1feffc316b7ebfa9ca96e182572e402 Mon Sep 17 00:00:00 2001 From: nicm Date: Sun, 1 Feb 2015 23:43:23 +0000 Subject: Remove two unused arguments from status_replace. --- usr.bin/tmux/server-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/tmux/server-client.c') 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 @@ -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); -- cgit v1.2.3-59-g8ed1b