summaryrefslogtreecommitdiff
path: root/src/modules/chat/chat_rtf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/chat/chat_rtf.cpp')
-rw-r--r--src/modules/chat/chat_rtf.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/chat/chat_rtf.cpp b/src/modules/chat/chat_rtf.cpp
index 8373a833d5..255a051ef9 100644
--- a/src/modules/chat/chat_rtf.cpp
+++ b/src/modules/chat/chat_rtf.cpp
@@ -116,7 +116,7 @@ int DoRtfToTags(CMString &pszText, int iNumColors, COLORREF *pColors)
else if (!_tcsncmp(p, _T("\\highlight"), 10)) { //background color
TCHAR szTemp[20];
int iCol = _ttoi(p + 10);
- mir_sntprintf(szTemp, SIZEOF(szTemp), _T("%d"), iCol);
+ mir_sntprintf(szTemp, _T("%d"), iCol);
}
else if (!_tcsncmp(p, _T("\\line"), 5)) { // soft line break;
res.AppendChar('\n');
@@ -196,8 +196,8 @@ int DoRtfToTags(CMString &pszText, int iNumColors, COLORREF *pColors)
}
}
- if (bInsideUl)
- res.Append(_T("[/u]"));
+ if (bInsideUl)
+ res.Append(_T("[/u]"));
pszText = res;
return TRUE;