1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-11 02:13:38 +09:00

Fix stackoverflow message for repeated frames (#104508)

Fixes #104495
This commit is contained in:
Jan Kotas 2024-07-06 11:35:23 -07:00 committed by GitHub
parent a7efcd9ca9
commit 9efc798f85
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -265,7 +265,7 @@ public:
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");