diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-09-18 14:01:19 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-09-18 14:01:19 +0100 |
commit | ca5afb34bfdcaddbaed12e7375b48c05019e4c18 (patch) | |
tree | 5f841425b93c5b5487b74bfbf26bf20bf2a896cc /control.c | |
parent | eea85fb4c741e6e08df77de414aac124743908ff (diff) | |
parent | 88b66e9e28733676b15a996d8fb5cbf66e01bc88 (diff) | |
download | rtmux-ca5afb34bfdcaddbaed12e7375b48c05019e4c18.tar.gz rtmux-ca5afb34bfdcaddbaed12e7375b48c05019e4c18.tar.bz2 rtmux-ca5afb34bfdcaddbaed12e7375b48c05019e4c18.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'control.c')
-rw-r--r-- | control.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -688,8 +688,8 @@ control_write_pending(struct client *c, struct control_pane *cp, size_t limit) else age = 0; log_debug("%s: %s: output block %zu (age %llu) for %%%u " - "(used %zu/%zu)", __func__, c->name, cb->size, age, - cp->pane, used, limit); + "(used %zu/%zu)", __func__, c->name, cb->size, + (unsigned long long)age, cp->pane, used, limit); size = cb->size; if (size > limit - used) |