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
This commit is contained in:
Willy Tarreau 2018-12-11 09:03:07 +01:00
parent 7571015939
commit 2df026fbce
1 changed files with 1 additions and 1 deletions

View 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>