BUILD/DEBUG: hpack-tbl: fix format string in standalone debug code
In issue #1184, cppcheck reports that an incorrect format "%d" was
used to print an unsigned in the debug code, though values are always
very small and this will never be an issue.
diff --git a/src/hpack-tbl.c b/src/hpack-tbl.c
index 8df1031..990d2f7 100644
--- a/src/hpack-tbl.c
+++ b/src/hpack-tbl.c
@@ -111,7 +111,7 @@
for (i = HPACK_SHT_SIZE; i < HPACK_SHT_SIZE + dht->used; i++) {
slot = (hpack_get_dte(dht, i - HPACK_SHT_SIZE + 1) - dht->dte);
- fprintf(out, "idx=%d slot=%u name=<%s> value=<%s> addr=%u-%u\n",
+ fprintf(out, "idx=%u slot=%u name=<%s> value=<%s> addr=%u-%u\n",
i, slot,
istpad(name, hpack_idx_to_name(dht, i)).ptr,
istpad(value, hpack_idx_to_value(dht, i)).ptr,