From c9642ee21367f0bf2b17b423d7155c88138aa9fc 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. --- server-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server-client.c') diff --git a/server-client.c b/server-client.c index e0b0c668..6c475f2d 100644 --- a/server-client.c +++ b/server-client.c @@ -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