csi: fix typo - the '(' was in the wrong place

This commit is contained in:
Daniel Eklöf 2020-04-19 14:52:14 +02:00
parent b7593897b7
commit 08485ce412
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
csi.c
View file

@ -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;
}