diff options
author | Thomas Adam <thomas@xteddy.org> | 2018-03-08 10:02:26 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2018-03-08 10:02:26 +0000 |
commit | 9fd995275201893a604d15bb426e0f5a7f7971e6 (patch) | |
tree | 5680ec4fe61bc9a544507a402c6598ccd41f45d3 /format.c | |
parent | 3c451a64b59a20dac9be9455b02266ca575f4d3b (diff) | |
parent | 19f3a5c6120c5d845eb942e67413c03c0c008a87 (diff) | |
download | rtmux-9fd995275201893a604d15bb426e0f5a7f7971e6.tar.gz rtmux-9fd995275201893a604d15bb426e0f5a7f7971e6.tar.bz2 rtmux-9fd995275201893a604d15bb426e0f5a7f7971e6.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -295,7 +295,7 @@ format_job_get(struct format_tree *ft, const char *cmd) t = time(NULL); if (fj->job == NULL && (force || fj->last != t)) { fj->job = job_run(expanded, NULL, NULL, format_job_update, - format_job_complete, NULL, fj); + format_job_complete, NULL, fj, JOB_NOWAIT); if (fj->job == NULL) { free(fj->out); xasprintf(&fj->out, "<'%s' didn't start>", fj->cmd); |