Skip to content

Commit ee6dee3

Browse files
committed
Fix wrong struct element names
1 parent c20d9b0 commit ee6dee3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CLR/Debugger/Debugger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2727,7 +2727,7 @@ bool CLR_DBG_Debugger::Debugging_Value_GetStack(WP_Message *msg)
27272727
num = isInline ? md.target->argumentsCount : md.target->argumentsCount;
27282728
#else
27292729
array = call->m_arguments;
2730-
num = call->m_call.m_target->ArgumentsCount;
2730+
num = call->m_call.target->argumentsCount;
27312731
#endif
27322732
break;
27332733

@@ -2737,7 +2737,7 @@ bool CLR_DBG_Debugger::Debugging_Value_GetStack(WP_Message *msg)
27372737
num = isInline ? md.target->localsCount : md.target->localsCount;
27382738
#else
27392739
array = call->m_locals;
2740-
num = call->m_call.m_target->LocalsCount;
2740+
num = call->m_call.target->localsCount;
27412741
#endif
27422742
break;
27432743

0 commit comments

Comments
 (0)