From 53f3d0d71c3c445bc4ac413d42c4386381e47b49 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Tue, 2 Jul 2019 15:05:44 -0500 Subject: [PATCH] Fix include path separator Changes the include path separator for Windows builds to use "/" instead of "\". Windows has no problems with using a forward slash as a path separator, but using a backslash causes problems when attempting to cross compile for other platforms (for example, when trying to cross compile for MinGW from Linux). --- bzip2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bzip2.c b/bzip2.c index e362c65..be3b3be 100644 --- a/bzip2.c +++ b/bzip2.c @@ -128,7 +128,7 @@ #if BZ_LCCWIN32 # include # include -# include +# include # define NORETURN /**/ # define PATH_SEP '\\' -- 2.43.5