Skip to content

Commit 1caf186

Browse files
committed
Fix case in struct element
1 parent badf168 commit 1caf186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CLR/Core/CLR_RT_StackFrame.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ HRESULT CLR_RT_StackFrame::Push(CLR_RT_Thread *th, const CLR_RT_MethodDef_Instan
3838
#ifndef NANOCLR_NO_IL_INLINE
3939
sizeEvalStack = md->lengthEvalStack + CLR_RT_StackFrame::c_OverheadForNewObjOrInteropMethod + 1;
4040
#else
41-
sizeEvalStack = md->LengthEvalStack + CLR_RT_StackFrame::c_OverheadForNewObjOrInteropMethod;
41+
sizeEvalStack = md->lengthEvalStack + CLR_RT_StackFrame::c_OverheadForNewObjOrInteropMethod;
4242
#endif
4343

4444
//--//

0 commit comments

Comments
 (0)