diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-07 19:15:57 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-07 19:15:57 +0000 |
commit | 7e78293fcbabc945a8a9e5bcaab121fbbf697c4c (patch) | |
tree | 68a371d8f9b8ca5604ce5359e681f9461a956c71 /protocols/Tox/src/tox_transfer.h | |
parent | 81c987f5b850447389b2621037a364c3fcb0ba73 (diff) |
Tox: fixed avatar work
git-svn-id: http://svn.miranda-ng.org/main/trunk@13480 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_transfer.h')
-rw-r--r-- | protocols/Tox/src/tox_transfer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_transfer.h b/protocols/Tox/src/tox_transfer.h index b8511779f3..12d651339a 100644 --- a/protocols/Tox/src/tox_transfer.h +++ b/protocols/Tox/src/tox_transfer.h @@ -69,7 +69,7 @@ struct AvatarTransferParam : public FileTransferParam uint8_t hash[TOX_HASH_LENGTH];
AvatarTransferParam(uint32_t friendNumber, uint32_t fileNumber, const TCHAR *fileName, uint64_t fileSize)
- : FileTransferParam(friendNumber, fileNumber, NULL, fileSize)
+ : FileTransferParam(friendNumber, fileNumber, fileName, fileSize)
{
transferType = TOX_FILE_KIND_AVATAR;
}
|