diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-10 20:34:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-10 20:34:53 +0300 |
commit | 916d3c8fc91d4290aaf5625db636b6cf102306a6 (patch) | |
tree | 2a29cc423ec49112abf48066369629ce92fc068d /protocols/IcqOscarJ/src/icq_filerequests.cpp | |
parent | 8b981c349ce9489de8c3866bac909f091bb41f8c (diff) |
ICQ:
- warning fixes;
- minor code cleaning
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_filerequests.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_filerequests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/icq_filerequests.cpp b/protocols/IcqOscarJ/src/icq_filerequests.cpp index c6452896f3..793caa9712 100644 --- a/protocols/IcqOscarJ/src/icq_filerequests.cpp +++ b/protocols/IcqOscarJ/src/icq_filerequests.cpp @@ -80,7 +80,7 @@ void CIcqProto::handleFileAck(PBYTE buf, size_t wLen, DWORD dwUin, DWORD dwCooki unpackString(&buf, pszFileName, wFilenameLength);
pszFileName[wFilenameLength] = '\0';
}
- wLen -= wFilenameLength+2;
+ wLen -= wFilenameLength + 2;
if (wLen >= 4)
unpackLEDWord(&buf, &dwFileSize);
|