From 55fbacb46922d50cf4fe5545d7f5df6a36f8919c Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 22 May 2026 13:07:54 +0100 Subject: [PATCH] Fix merge error. --- screen-write.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/screen-write.c b/screen-write.c index 88413ca0..3708c5cd 100644 --- a/screen-write.c +++ b/screen-write.c @@ -2144,8 +2144,8 @@ screen_write_collect_flush(struct screen_write_ctx *ctx, int scroll_only, ttyctx.cell = &ci->gc; if (ci->wrapped) ttyctx.flags |= TTY_CTX_WRAPPED; - ttyctx.ptr = cl->data + wr_start; - ttyctx.n = wr_length; + ttyctx.data.data = cl->data + wr_start; + ttyctx.data.size = wr_length; tty_write(tty_cmd_cells, &ttyctx); } items++;