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.
This commit is contained in:
Michael Vetter
2026-02-28 13:46:46 +01:00
parent 80e36bd1e2
commit b0abb64950

View File

@@ -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);