Skip to content

Commit

Permalink
Fix stackoverflow message for repeated frames (#104508)
Browse files Browse the repository at this point in the history
Fixes #104495
  • Loading branch information
jkotas authored Jul 6, 2024
1 parent a7efcd9 commit 9efc798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/eepolicy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class CallStackLogger
if (m_largestCommonStartLength != 0)
{
SmallStackSString repeatStr;
repeatStr.AppendPrintf("Repeat %d times:\n", m_largestCommonStartRepeat);
repeatStr.AppendPrintf("Repeated %d times:\n", m_largestCommonStartRepeat);

PrintToStdErrW(repeatStr.GetUnicode());
PrintToStdErrA("--------------------------------\n");
Expand Down

0 comments on commit 9efc798

Please sign in to comment.