diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-27 08:09:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-27 08:09:54 +0000 |
commit | 4a57667c0372692f38be7457a1d11346af5e17c1 (patch) | |
tree | c0b65afce8acd7f062b38fe7bfe389da567327ab /protocols/MRA/MraRTFMsg.cpp | |
parent | 86651ea27acb5ba7f4cba2fdeb8a8a1d6bd3165f (diff) |
- fix for MRA avatar path
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@1677 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA/MraRTFMsg.cpp')
-rw-r--r-- | protocols/MRA/MraRTFMsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MRA/MraRTFMsg.cpp b/protocols/MRA/MraRTFMsg.cpp index 02e3a371e4..0e6e76f4ce 100644 --- a/protocols/MRA/MraRTFMsg.cpp +++ b/protocols/MRA/MraRTFMsg.cpp @@ -153,7 +153,7 @@ DWORD MraSymbolsToRTFTags(DWORD dwFlags, LPSTR lpszMessage, size_t dwMessageSize if (lpszFounded[i]) dwFoundCount++;
}
- while(dwFoundCount) {
+ while (dwFoundCount) {
for (i = 0;i<SYMBOLS_COUNT;i++)
if (lpszFounded[i] && (lpszFounded[i]<lpszFounded[dwFirstFoundIndex] || lpszFounded[dwFirstFoundIndex] == NULL))
dwFirstFoundIndex = i;
|