summaryrefslogtreecommitdiff
path: root/src/gc/handletablepriv.h
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-11-19 10:38:17 +0100
committerJan Vorlicek <janvorli@microsoft.com>2015-11-19 10:38:17 +0100
commitca854edf49a0dc91cc6f80f10b8fdfba39878e07 (patch)
tree43481e386bf19ad19c2189d68dcd65a981f8a0e7 /src/gc/handletablepriv.h
parent8a1abac8f17553f97b2613784db4bde1f5edda96 (diff)
downloadcoreclr-ca854edf49a0dc91cc6f80f10b8fdfba39878e07.tar.gz
coreclr-ca854edf49a0dc91cc6f80f10b8fdfba39878e07.tar.bz2
coreclr-ca854edf49a0dc91cc6f80f10b8fdfba39878e07.zip
Changed LONG and ULONG
Diffstat (limited to 'src/gc/handletablepriv.h')
-rw-r--r--src/gc/handletablepriv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gc/handletablepriv.h b/src/gc/handletablepriv.h
index c9ea8bddbf..2740c5bd7d 100644
--- a/src/gc/handletablepriv.h
+++ b/src/gc/handletablepriv.h
@@ -323,7 +323,7 @@ struct HandleTypeCache
/*
* index of next available handle slot in the reserve bank
*/
- LONG lReserveIndex;
+ int32_t lReserveIndex;
/*---------------------------------------------------------------------------------
@@ -339,7 +339,7 @@ struct HandleTypeCache
/*
* index of next empty slot in the free bank
*/
- LONG lFreeIndex;
+ int32_t lFreeIndex;
};