From 696e14d9776749985644e14ac23f04847f030539 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 4 Dec 2023 16:52:24 -0500 Subject: cmFileLockResult: Fix inclusion of windows.h when cross-compiling In commit 64821d8a26 (cmFileLockResult: Remove expensive windows.h include, 2023-06-16, v3.28.0-rc1~446^2~13) we accidentally capitalized the name of the header. This matters when cross-compiling from a host with a case-sensitive filesystem. Fixes: #25474 --- Source/cmFileLockResult.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmFileLockResult.cxx b/Source/cmFileLockResult.cxx index 632c0e9..cbe4fec 100644 --- a/Source/cmFileLockResult.cxx +++ b/Source/cmFileLockResult.cxx @@ -6,7 +6,7 @@ #include #ifdef _WIN32 -# include +# include #endif cmFileLockResult cmFileLockResult::MakeOk() -- cgit v0.12