https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=9b24fc95059901966c418c5a777e37a8f11ed9da
commit 9b24fc95059901966c418c5a777e37a8f11ed9da Author: Corinna Vinschen <[email protected]> Date: Thu May 20 09:59:00 2021 +0200 Cygwin: autoload: fix case in DLL name for sanity Signed-off-by: Corinna Vinschen <[email protected]> Diff: --- winsup/cygwin/autoload.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index 0ebe15332..e25439725 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -598,7 +598,7 @@ LoadDLLfunc (QueryInterruptTime, 4, KernelBase) LoadDLLfunc (QueryInterruptTimePrecise, 4, KernelBase) LoadDLLfunc (QueryUnbiasedInterruptTime, 4, KernelBase) LoadDLLfunc (QueryUnbiasedInterruptTimePrecise, 4, KernelBase) -LoadDLLfunc (VirtualAlloc2, 28, kernelbase) +LoadDLLfunc (VirtualAlloc2, 28, KernelBase) LoadDLLfunc (NtMapViewOfSectionEx, 36, ntdll)
