commit | f87bb23acbf0c58fa7456d470feb95d2d0865a2c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Nov 24 15:35:17 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Nov 24 15:35:17 2022 +0100 |
tree | d7356bf62f09a9a8bac9a20bb383df1af405bde7 | |
parent | d05aa38950e106202b8bd374d73329d2c3e3a4ac [diff] |
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.