From 1c16e4a575713581140b81198c0a57dbbf5c0cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 12 Feb 2023 19:09:48 +0100 Subject: [PATCH] Tag a couple variables with UNUSED, to fix warnings with clang-15 Closes #1278 --- sixel.c | 2 +- uri.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sixel.c b/sixel.c index a824c405..592f48f8 100644 --- a/sixel.c +++ b/sixel.c @@ -154,7 +154,7 @@ verify_list_order(const struct terminal *term) int prev_col_count = 0; /* To aid debugging */ - size_t idx = 0; + size_t UNUSED idx = 0; tll_foreach(term->grid->sixel_images, it) { int row = grid_row_abs_to_sb( diff --git a/uri.c b/uri.c index 39073bde..7214a479 100644 --- a/uri.c +++ b/uri.c @@ -159,7 +159,7 @@ uri_parse(const char *uri, size_t len, char *p = decoded; size_t encoded_len = path_len; - size_t decoded_len = 0; + size_t UNUSED decoded_len = 0; while (true) { /* Find next '%' */