Skip to content

Commit 9efc798

Browse files
authored
Fix stackoverflow message for repeated frames (#104508)
Fixes #104495
1 parent a7efcd9 commit 9efc798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/vm/eepolicy.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class CallStackLogger
265265
if (m_largestCommonStartLength != 0)
266266
{
267267
SmallStackSString repeatStr;
268-
repeatStr.AppendPrintf("Repeat %d times:\n", m_largestCommonStartRepeat);
268+
repeatStr.AppendPrintf("Repeated %d times:\n", m_largestCommonStartRepeat);
269269

270270
PrintToStdErrW(repeatStr.GetUnicode());
271271
PrintToStdErrA("--------------------------------\n");

0 commit comments

Comments
 (0)