diff options
author | nicm <nicm> | 2015-02-05 10:29:43 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-02-05 10:29:43 +0000 |
commit | 4946f74253de52f10beb023d4c5b88bafdb11ec4 (patch) | |
tree | 4210eaf66f9aee7998ec558ce34a1c9454ae0b71 /control-notify.c | |
parent | e5d9ceff18e37320b9243d24204a0a79d77172e4 (diff) | |
download | rtmux-4946f74253de52f10beb023d4c5b88bafdb11ec4.tar.gz rtmux-4946f74253de52f10beb023d4c5b88bafdb11ec4.tar.bz2 rtmux-4946f74253de52f10beb023d4c5b88bafdb11ec4.zip |
Wrap all the individual format_* calls in a single format_defaults
functions.
Diffstat (limited to 'control-notify.c')
-rw-r--r-- | control-notify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-notify.c b/control-notify.c index 4ea1570b..747ef5b4 100644 --- a/control-notify.c +++ b/control-notify.c @@ -88,7 +88,7 @@ control_notify_window_layout_changed(struct window *w) ft = format_create(); wl = winlink_find_by_window(&s->windows, w); if (wl != NULL) { - format_winlink(ft, c->session, wl); + format_defaults(ft, c, NULL, wl, NULL); control_write(c, "%s", format_expand(ft, template)); } format_free(ft); |