The upper layer disk string parser doesn't need the internals of the lower layer file parser. Split the layers apart. This is viable due to the lower-layer internals having been removed from libxlu_internals.h.
Signed-off-by: Elliott Mitchell <[email protected]> --- tools/libs/util/libxlu_disk.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/libs/util/libxlu_disk.c b/tools/libs/util/libxlu_disk.c index a4d08ab7e9..92da9bd3b1 100644 --- a/tools/libs/util/libxlu_disk.c +++ b/tools/libs/util/libxlu_disk.c @@ -1,7 +1,6 @@ #include "libxlu_internal.h" #include "libxlu_disk_l.h" #include "libxlu_disk_i.h" -#include "libxlu_cfg_i.h" void xlu__disk_err(DiskParseContext *dpc, const char *erroneous, const char *message) { -- 2.30.2
