From 1ccd623e94197fd93d5380b90d5476343c078a9f Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 16 Mar 2021 10:11:00 +0100 Subject: api: make .h filenames lowercase for building with MinGW on Linux MinGW supplies all Windows header files using lowercase filenames. This makes some of the #include lines in wintun.h fail to resolve the .h files correctly on a case-sensitive filesystem. Signed-off-by: Simon Rozman --- api/wintun.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/wintun.h b/api/wintun.h index da2dfcf..2b03d33 100644 --- a/api/wintun.h +++ b/api/wintun.h @@ -5,8 +5,8 @@ #pragma once -#include -#include +#include +#include #include #ifdef __cplusplus -- cgit v1.2.3-59-g8ed1b