summaryrefslogtreecommitdiff
path: root/src/gc/env
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-11-20 01:19:07 +0100
committerJan Vorlicek <janvorli@microsoft.com>2015-11-20 01:19:07 +0100
commit36d28bb5c794d25f57fe31a0d89fb60ea48fdaa4 (patch)
tree840dc210c9946dbaef5079c8c9dd833cb4cc06cb /src/gc/env
parente615f0a93a3063da2166029faaa8f5da9fe1308b (diff)
downloadcoreclr-36d28bb5c794d25f57fe31a0d89fb60ea48fdaa4.tar.gz
coreclr-36d28bb5c794d25f57fe31a0d89fb60ea48fdaa4.tar.bz2
coreclr-36d28bb5c794d25f57fe31a0d89fb60ea48fdaa4.zip
Fix few missing casts
Strangely enough, the build was successful locally, but not on the CI machines.
Diffstat (limited to 'src/gc/env')
-rw-r--r--src/gc/env/gcenv.base.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gc/env/gcenv.base.h b/src/gc/env/gcenv.base.h
index 0fb81e5d48..88821b14b5 100644
--- a/src/gc/env/gcenv.base.h
+++ b/src/gc/env/gcenv.base.h
@@ -28,6 +28,7 @@ typedef uint32_t BOOL;
typedef uint32_t DWORD;
typedef void* LPVOID;
typedef uint32_t UINT;
+typedef uintptr_t ULONG_PTR;
typedef void VOID;
typedef void* PVOID;
typedef void * LPSECURITY_ATTRIBUTES;
@@ -183,8 +184,8 @@ GetWriteWatch(
PVOID lpBaseAddress,
SIZE_T dwRegionSize,
PVOID *lpAddresses,
- uintptr_t * lpdwCount,
- uint32_t * lpdwGranularity
+ ULONG_PTR * lpdwCount,
+ DWORD * lpdwGranularity
);
WINBASEAPI