From b0abb64950a685692515a6eaa1b995e69f66fe18 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Sat, 28 Feb 2026 13:46:46 +0100 Subject: [PATCH] refactor: Fix clang-format expansion of table By removing the trailing comma from the array initialization we hint clang-format to maintain the compact layout. --- src/omemo/omemo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/omemo/omemo.c b/src/omemo/omemo.c index 133287d5..70fee769 100644 --- a/src/omemo/omemo.c +++ b/src/omemo/omemo.c @@ -1784,7 +1784,7 @@ _bytes_from_hex(const char* hex, size_t hex_size, const unsigned char ht[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, // 01234567 0x08, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 89:;<=>? - 0x00, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, // @ABCDEFG + 0x00, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00 // @ABCDEFG }; const size_t ht_size = sizeof(ht);