From 462229af7025a29f421d4acf657a71175bafb8c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 22 Feb 2020 21:24:21 +0100 Subject: [PATCH] sixel: oops --- sixel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sixel.c b/sixel.c index 15aeca43..7d31dea4 100644 --- a/sixel.c +++ b/sixel.c @@ -190,9 +190,9 @@ sixel_add(struct terminal *term, uint32_t color, uint8_t sixel) int height = max( term->sixel.image.height, - (term->sixel.pos.row + 1) * 6)) + (term->sixel.pos.row + 1) * 6); - resize(term, width, height);; + resize(term, width, height); } for (int i = 0; i < 6; i++, sixel >>= 1) {