summaryrefslogtreecommitdiffstats
path: root/control.c
diff options
context:
space:
mode:
authornicm <nicm>2020-09-18 11:20:59 +0000
committernicm <nicm>2020-09-18 11:20:59 +0000
commited946dccc76f87064f1b8299b6ea332db9ab6c19 (patch)
tree6d0ef4fa6c21db353c7bc7d0593b17e0ffab1231 /control.c
parent3206869ea5cbcf0caa9e62ec11edb170aae2cf27 (diff)
Some other warnings, GitHub issue 2382.
Diffstat (limited to 'control.c')
-rw-r--r--control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/control.c b/control.c
index c52f2020..e86429cf 100644
--- a/control.c
+++ b/control.c
@@ -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)