From 3f189945d8838f98920a6d24a838bc8614ace636 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 18 Apr 2019 11:07:28 +0000 Subject: Pass target client and session to load_cfg from source-file so formats work. Reported by Thomas Sattler. --- screen-write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'screen-write.c') diff --git a/screen-write.c b/screen-write.c index 566d4d14..237b6359 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1139,7 +1139,7 @@ screen_write_collect_clear(struct screen_write_ctx *ctx, u_int y, u_int n) u_int i; size_t size; - for (i = y ; i < y + n; i++) { + for (i = y; i < y + n; i++) { if (TAILQ_EMPTY(&ctx->list[i].items)) continue; size = 0; -- cgit