From 08485ce412ed02c1294187dae1d19e23f26240a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 19 Apr 2020 14:52:14 +0200 Subject: [PATCH] csi: fix typo - the '(' was in the wrong place --- csi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csi.c b/csi.c index e6cbeefc..ce89cad6 100644 --- a/csi.c +++ b/csi.c @@ -891,7 +891,7 @@ csi_dispatch(struct terminal *term, uint8_t final) char reply[64]; snprintf(reply, sizeof(reply), "\033[9;%d;%dt", it->item->dim.px_real.height / term->cell_height / term->scale, - it->item->dim.px_real.width / term->cell_width) / term->scale; + it->item->dim.px_real.width / term->cell_width / term->scale); term_to_slave(term, reply, strlen(reply)); break; }