Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs')
-rw-r--r--src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs b/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs
index bc537f749..823516ec4 100644
--- a/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs
+++ b/src/Common/src/Interop/Windows/mincore/Interop.MemAllocFree.cs
@@ -17,7 +17,7 @@ internal static partial class Interop
internal static extern IntPtr HeapAlloc(IntPtr hHeap, uint dwFlags, UIntPtr dwBytes);
[DllImport("api-ms-win-core-heap-l1-1-0.dll")]
- internal static extern int HeapFree(IntPtr hHeap, UInt32 dwFlags, IntPtr lpMem);
+ internal static extern int HeapFree(IntPtr hHeap, uint dwFlags, IntPtr lpMem);
}
#if MULTIPLEX_OS