diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-05-13 08:16:11 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-05-13 08:16:11 +0100 |
commit | ae2c5ad76852d6d2e2463e45b13fc8c15b66e4b7 (patch) | |
tree | 3b72d0b5403d4f0f9d928cf7bcc978f7c9a6cefb /format.c | |
parent | 2bff5e7867b4849019df04d77ecade300c6e3dce (diff) | |
download | rtmux-ae2c5ad76852d6d2e2463e45b13fc8c15b66e4b7.tar.gz rtmux-ae2c5ad76852d6d2e2463e45b13fc8c15b66e4b7.tar.bz2 rtmux-ae2c5ad76852d6d2e2463e45b13fc8c15b66e4b7.zip |
Reset updated flag when restarting job so new output is detected, reported by
Gregory Pakosz in GitHub issue 922.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -320,6 +320,7 @@ format_job_get(struct format_tree *ft, const char *cmd) xasprintf(&fj->out, "<'%s' didn't start>", fj->cmd); } fj->last = t; + fj->updated = 0; } if (ft->flags & FORMAT_STATUS) |