diff options
author | nicm <nicm> | 2020-09-18 11:20:59 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-09-18 11:20:59 +0000 |
commit | ed946dccc76f87064f1b8299b6ea332db9ab6c19 (patch) | |
tree | 6d0ef4fa6c21db353c7bc7d0593b17e0ffab1231 /control.c | |
parent | 3206869ea5cbcf0caa9e62ec11edb170aae2cf27 (diff) | |
download | rtmux-ed946dccc76f87064f1b8299b6ea332db9ab6c19.tar.gz rtmux-ed946dccc76f87064f1b8299b6ea332db9ab6c19.tar.bz2 rtmux-ed946dccc76f87064f1b8299b6ea332db9ab6c19.zip |
Some other warnings, GitHub issue 2382.
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) |