From 106278e7e5fafaea3b7deb4147bdc8071562d2f0 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 12 Nov 2019 18:59:06 -0500 Subject: [PATCH] Use lowercase windows.h Helps for cross builds, doesn't matter on Windows itself. --- programs/timefn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/timefn.h b/programs/timefn.h index d1ddd31b1..37802a804 100644 --- a/programs/timefn.h +++ b/programs/timefn.h @@ -47,7 +47,7 @@ extern "C" { ******************************************/ #if defined(_WIN32) /* Windows */ - #include /* LARGE_INTEGER */ + #include /* LARGE_INTEGER */ typedef LARGE_INTEGER UTIL_time_t; #define UTIL_TIME_INITIALIZER { { 0, 0 } }