Skip to content

Commit

Permalink
Merge pull request libgit2#6377 from Vinz2008/main
Browse files Browse the repository at this point in the history
Fixes libgit2#6365 : Uppercase windows.h include fails build in case-sensitive OS
  • Loading branch information
ethomson authored Sep 19, 2022
2 parents d959e75 + d64f3d0 commit b075bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/opt.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "opt.h"

#ifdef _WIN32
# include <Windows.h>
# include <windows.h>
#else
# include <fcntl.h>
# include <sys/ioctl.h>
Expand Down

0 comments on commit b075bda

Please sign in to comment.