]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: hpack: no need to include chunk.h, only include buf.h
authorWilly Tarreau <w@1wt.eu>
Tue, 11 Dec 2018 08:03:07 +0000 (09:03 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 11 Dec 2018 08:06:06 +0000 (09:06 +0100)
Chunk.h used to be needed to declare the struct chunk which we don't
use anymore, let's fall back to the lighter buf.h

include/common/hpack-enc.h

index 5246b83cae2bae8a0ae0f181af04cadd35971d44..23c886a5338409bab4f51cc749c0545e53056c87 100644 (file)
@@ -29,7 +29,7 @@
 #define _COMMON_HPACK_ENC_H
 
 #include <stdint.h>
-#include <common/chunk.h>
+#include <common/buf.h>
 #include <common/config.h>
 #include <common/ist.h>