From da866f6453861dda3cc517be034fe688adafeb74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 4 Oct 2020 13:10:25 +0200 Subject: [PATCH] sixel: verify-sixels: check for bad list order last --- sixel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sixel.c b/sixel.c index 32af3a65..84b889fd 100644 --- a/sixel.c +++ b/sixel.c @@ -201,8 +201,8 @@ static bool verify_sixels(const struct terminal *term) { return (verify_no_wraparound_crossover(term) && - verify_list_order(term) && - verify_no_overlap(term)); + verify_no_overlap(term) && + verify_list_order(term)); } static void