summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorSwaroop Sridhar <Swaroop.Sridhar@microsoft.com>2018-11-13 19:21:13 -0800
committerSwaroop Sridhar <Swaroop.Sridhar@microsoft.com>2018-11-14 11:42:23 -0800
commit2d3352ab3368d49b4d8dbce6d3c38bb7d104307f (patch)
tree4f48eaecb43eb9f7c3b55e8ed41649318e8418b6 /src/debug
parentf3295a192fb3fd81b1b6a0f71009db9f04f90a0b (diff)
downloadcoreclr-2d3352ab3368d49b4d8dbce6d3c38bb7d104307f.tar.gz
coreclr-2d3352ab3368d49b4d8dbce6d3c38bb7d104307f.tar.bz2
coreclr-2d3352ab3368d49b4d8dbce6d3c38bb7d104307f.zip
Fix warnings because of Bool incompatibality
Fix a compile warning because of bool vs BOOL incompatibality. Fixes a build break in the new VS compiler.
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/ee/controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/controller.cpp b/src/debug/ee/controller.cpp
index 8cefc3b660..9d2c196863 100644
--- a/src/debug/ee/controller.cpp
+++ b/src/debug/ee/controller.cpp
@@ -9007,7 +9007,7 @@ bool DebuggerContinuableExceptionBreakpoint::SendEvent(Thread *thread, bool fIpC
if (hitDataBp)
{
CONTEXT contextToAdjust;
- bool adjustedContext = false;
+ BOOL adjustedContext = FALSE;
memcpy(&contextToAdjust, pContext, sizeof(CONTEXT));
adjustedContext = g_pEEInterface->AdjustContextForWriteBarrierForDebugger(&contextToAdjust);
if (adjustedContext)