From: Eric Biggers Date: Sat, 5 Jul 2014 02:54:41 +0000 (-0500) Subject: {lzx,lzms}-decompress.c: Include wimlib/error.h, not wimlib.h X-Git-Tag: v1.7.1~60 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;ds=sidebyside;h=a8ba9aa8fd37afb035868aa5597beca4148d3fad;p=wimlib {lzx,lzms}-decompress.c: Include wimlib/error.h, not wimlib.h --- diff --git a/src/lzms-decompress.c b/src/lzms-decompress.c index 9c78fb41..e68a97e2 100644 --- a/src/lzms-decompress.c +++ b/src/lzms-decompress.c @@ -200,10 +200,10 @@ # include "config.h" #endif -#include "wimlib.h" #include "wimlib/compress_common.h" #include "wimlib/decompressor_ops.h" #include "wimlib/decompress_common.h" +#include "wimlib/error.h" #include "wimlib/lzms.h" #include "wimlib/util.h" diff --git a/src/lzx-decompress.c b/src/lzx-decompress.c index 10c37115..c98b84c0 100644 --- a/src/lzx-decompress.c +++ b/src/lzx-decompress.c @@ -107,9 +107,9 @@ # include "config.h" #endif -#include "wimlib.h" #include "wimlib/decompressor_ops.h" #include "wimlib/decompress_common.h" +#include "wimlib/error.h" #include "wimlib/lzx.h" #include "wimlib/util.h"