]> git.ipfire.org Git - thirdparty/haproxy.git/commit
CLEANUP: qpack: fix format string in debugging code (int signedness)
authorWilly Tarreau <w@1wt.eu>
Thu, 24 Nov 2022 14:35:17 +0000 (15:35 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 24 Nov 2022 14:35:17 +0000 (15:35 +0100)
commitf87bb23acbf0c58fa7456d470feb95d2d0865a2c
treed7356bf62f09a9a8bac9a20bb383df1af405bde7
parentd05aa38950e106202b8bd374d73329d2c3e3a4ac
CLEANUP: qpack: fix format string in debugging code (int signedness)

In issue #1939, Ilya mentions that cppchecks warned about use of "%d" to
report the QPACK table's index that's locally stored as an unsigned int.
While technically valid, this will never cause any trouble since indexes
are always small positive values, but better use %u anyway to silence
this warning.
src/qpack-tbl.c