diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-15 10:57:54 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-15 10:57:54 +0000 |
commit | 58f3f2d387c7b3a020eaf4f0b30bf70522adcfad (patch) | |
tree | 0e09137c3b8b84a79616a9c65df9eacff377d777 /protocols/Tox/src/tox_transfer.cpp | |
parent | 60b391e2a55749c0cf9e96f53515673a0898a0d5 (diff) |
code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@12120 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_transfer.cpp')
-rw-r--r-- | protocols/Tox/src/tox_transfer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_transfer.cpp b/protocols/Tox/src/tox_transfer.cpp index cad34a1646..be0159dcdc 100644 --- a/protocols/Tox/src/tox_transfer.cpp +++ b/protocols/Tox/src/tox_transfer.cpp @@ -3,7 +3,7 @@ /* FILE RECEIVING */
// incoming file flow
-void CToxProto::OnFriendFile(Tox *tox, int32_t friendNumber, uint8_t fileNumber, uint64_t fileSize, const uint8_t *fileName, uint16_t length, void *arg)
+void CToxProto::OnFriendFile(Tox *, int32_t friendNumber, uint8_t fileNumber, uint64_t fileSize, const uint8_t *fileName, uint16_t, void *arg)
{
CToxProto *proto = (CToxProto*)arg;
@@ -262,7 +262,7 @@ void CToxProto::SendFileAsync(void *arg) /* COMMON */
// file request is cancelled
-int __cdecl CToxProto::FileCancel(MCONTACT hContact, HANDLE hTransfer)
+int __cdecl CToxProto::FileCancel(MCONTACT, HANDLE hTransfer)
{
FileTransferParam *transfer = (FileTransferParam*)hTransfer;
transfer->status = CANCELED;
|