Tag a couple variables with UNUSED, to fix warnings with clang-15

Closes #1278
This commit is contained in:
Daniel Eklöf 2023-02-12 19:09:48 +01:00
parent 1823fa846a
commit 1c16e4a575
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 2 additions and 2 deletions

View file

@ -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(

2
uri.c
View file

@ -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 '%' */