diff options
author | nicm <nicm> | 2015-02-01 23:43:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-02-01 23:43:23 +0000 |
commit | c9642ee21367f0bf2b17b423d7155c88138aa9fc (patch) | |
tree | a1cb4199c95bfa243f4605c2c9866c2ca29d94ec /server-client.c | |
parent | 4e03239d1f2edc4f2d9f90c2bb28d609b64ea566 (diff) | |
download | rtmux-c9642ee21367f0bf2b17b423d7155c88138aa9fc.tar.gz rtmux-c9642ee21367f0bf2b17b423d7155c88138aa9fc.tar.bz2 rtmux-c9642ee21367f0bf2b17b423d7155c88138aa9fc.zip |
Remove two unused arguments from status_replace.
Diffstat (limited to 'server-client.c')
-rw-r--r-- | server-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |