diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-04-13 18:01:43 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-04-13 18:01:43 +0100 |
commit | acc00cd13a767067f85ed27d52ad543c9a58869c (patch) | |
tree | 924a72d2029f32a3fb2b544bbc295b7e19bd197e /cfg.c | |
parent | 0a11f1607b9f3623dce287d4940bb925b533a340 (diff) | |
parent | 34804f2709a16dca45dc072fb53d03f79db61e51 (diff) | |
download | rtmux-acc00cd13a767067f85ed27d52ad543c9a58869c.tar.gz rtmux-acc00cd13a767067f85ed27d52ad543c9a58869c.tar.bz2 rtmux-acc00cd13a767067f85ed27d52ad543c9a58869c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cfg.c')
-rw-r--r-- | cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -182,7 +182,7 @@ load_cfg(const char *path, struct client *c, struct cmdq_item *item, int flags, return (0); } - new_item0 = cmdq_get_command(pr->cmdlist, NULL, NULL, 0); + new_item0 = cmdq_get_command(pr->cmdlist, NULL); if (item != NULL) new_item0 = cmdq_insert_after(item, new_item0); else @@ -228,7 +228,7 @@ load_cfg_from_buffer(const void *buf, size_t len, const char *path, return (0); } - new_item0 = cmdq_get_command(pr->cmdlist, NULL, NULL, 0); + new_item0 = cmdq_get_command(pr->cmdlist, NULL); if (item != NULL) new_item0 = cmdq_insert_after(item, new_item0); else |