diff options
author | George Hazan <george.hazan@gmail.com> | 2024-01-19 13:39:51 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-01-19 13:39:51 +0300 |
commit | 4f96ac493ef8e912cd1507fe79e4831a8cf7efb0 (patch) | |
tree | 1353aaa74990b265161a7ac97191d6983bb6f01c /protocols/Tox/src | |
parent | ffd5d3db80f0f4d97747e2810ea55b7fb9a3ad98 (diff) |
code cleaning
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r-- | protocols/Tox/src/tox_transfer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_transfer.cpp b/protocols/Tox/src/tox_transfer.cpp index 11b9c993bc..e5f12a2b8c 100644 --- a/protocols/Tox/src/tox_transfer.cpp +++ b/protocols/Tox/src/tox_transfer.cpp @@ -58,7 +58,7 @@ void CToxProto::OnFriendFile(Tox *tox, uint32_t friendNumber, uint32_t fileNumbe pre.timestamp = now();
pre.descr.w = L"";
pre.files.w = &name;
- pre.lParam = (LPARAM)transfer;
+ pre.pUserInfo = transfer;
ProtoChainRecvFile(hContact, &pre);
}
break;
|