diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-09-23 18:01:24 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-09-23 18:01:24 +0100 |
commit | dd254b90d7a281ee10e10cde3e70749f143af368 (patch) | |
tree | 585a2e4e1195998963f5d77fe4f55a2836dbcd2f /spawn.c | |
parent | 24ab1bc714b80d957b53685635a44dc0a89c032b (diff) | |
parent | 77deef733bfc547325d7c6db3e0274b1c52281b9 (diff) | |
download | rtmux-dd254b90d7a281ee10e10cde3e70749f143af368.tar.gz rtmux-dd254b90d7a281ee10e10cde3e70749f143af368.tar.bz2 rtmux-dd254b90d7a281ee10e10cde3e70749f143af368.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'spawn.c')
-rw-r--r-- | spawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ spawn_window(struct spawn_context *sc, char **cause) xasprintf(cause, "couldn't add window %d", idx); return (NULL); } - default_window_size(s, NULL, &sx, &sy, -1); + default_window_size(sc->c, s, NULL, &sx, &sy, -1); if ((w = window_create(sx, sy)) == NULL) { winlink_remove(&s->windows, sc->wl); xasprintf(cause, "couldn't create window %d", idx); |