From 2df026fbce8e5686c5639235c5ff0a54ffc5a817 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Tue, 11 Dec 2018 09:03:07 +0100 Subject: [PATCH] CLEANUP: hpack: no need to include chunk.h, only include buf.h 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/hpack-enc.h b/include/common/hpack-enc.h index 5246b83ca..23c886a53 100644 --- a/include/common/hpack-enc.h +++ b/include/common/hpack-enc.h @@ -29,7 +29,7 @@ #define _COMMON_HPACK_ENC_H #include -#include +#include #include #include