From acdddf6e907d4bbb343a0de8ad3f68c372c25191 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Thu, 12 Nov 2015 21:03:34 +0100 Subject: fosphor: Use lowercase for WIN32 includes Apparently needed for mingw build and doesn't affect the MSVC ones. Thanks to Martin Hauke for reporting Signed-off-by: Sylvain Munaut --- lib/fosphor/cl.c | 4 ++-- lib/fosphor/cl_compat.c | 2 +- lib/fosphor/main.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/fosphor/cl.c b/lib/fosphor/cl.c index b475396..67719d6 100644 --- a/lib/fosphor/cl.c +++ b/lib/fosphor/cl.c @@ -40,8 +40,8 @@ # include # include #elif defined(_WIN32) -# include -# include +# include +# include #else # include #endif diff --git a/lib/fosphor/cl_compat.c b/lib/fosphor/cl_compat.c index f312a9c..aefee3c 100644 --- a/lib/fosphor/cl_compat.c +++ b/lib/fosphor/cl_compat.c @@ -29,7 +29,7 @@ /* Include whatever is needed for dynamic symbol lookup */ #ifdef _WIN32 -# include +# include #else # define _GNU_SOURCE # include diff --git a/lib/fosphor/main.c b/lib/fosphor/main.c index 08b9ec7..f0c5be3 100644 --- a/lib/fosphor/main.c +++ b/lib/fosphor/main.c @@ -48,7 +48,7 @@ static const int k_db_per_div[] = { 1, 2, 5, 10, 20 }; #ifdef _WIN32 #include -#include +#include #if defined(_MSC_VER) || defined(_MSC_EXTENSIONS) # define DELTA_EPOCH_IN_MICROSECS 11644473600000000Ui64 -- cgit v1.2.3