diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-02-28 13:40:44 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-02-28 13:40:44 +0000 |
commit | 50d22d785b2f86acbdec003443103cb8da7914a5 (patch) | |
tree | 7a27726ff30b95ba2920263bc595ca2b6eb0a203 /plugins | |
parent | 60e837970d17d60c2af0a1b5351107d2dba31031 (diff) |
Dropbox: fix in file transfer
git-svn-id: http://svn.miranda-ng.org/main/trunk@8327 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Dropbox/src/dropbox_transfers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/dropbox_transfers.cpp b/plugins/Dropbox/src/dropbox_transfers.cpp index 80f3474f56..6eb03d8c86 100644 --- a/plugins/Dropbox/src/dropbox_transfers.cpp +++ b/plugins/Dropbox/src/dropbox_transfers.cpp @@ -140,7 +140,7 @@ int CDropbox::SendFileChunkedLast(const char *fileName, const char *uploadId, MC if (hContact != CDropbox::GetDefaultContact())
{
- if (CallContactService(hContact, PSS_MESSAGE, 0, (LPARAM)&message != ACKRESULT_FAILED))
+ if (CallContactService(hContact, PSS_MESSAGE, 0, (LPARAM)&message) != ACKRESULT_FAILED)
{
DBEVENTINFO dbei = { sizeof(dbei) };
dbei.szModule = MODULE;
|