diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-07 00:16:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-07 00:16:55 +0300 |
commit | 45dddaa51b79bbb2d5dc999e4849951a1e7f0ae3 (patch) | |
tree | bac17acc10e71a9203c126de0614f6d0147be3b3 /protocols/IcqOscarJ/src/icq_proto.cpp | |
parent | f7cfd1068128e6a7da7d69d1de035b6c70028e17 (diff) |
code cleaning
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_proto.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/icq_proto.cpp b/protocols/IcqOscarJ/src/icq_proto.cpp index 0c0f989102..7e9971925b 100644 --- a/protocols/IcqOscarJ/src/icq_proto.cpp +++ b/protocols/IcqOscarJ/src/icq_proto.cpp @@ -522,7 +522,7 @@ int __cdecl CIcqProto::FileCancel(MCONTACT hContact, HANDLE hTransfer) icq_CancelFileTransfer((filetransfer*)hTransfer);
return 0; // Success
}
- else if (ft->ft_magic == FT_MAGIC_OSCAR) { // cancel oscar file transfer
+ if (ft->ft_magic == FT_MAGIC_OSCAR) { // cancel oscar file transfer
return oftFileCancel(hContact, hTransfer);
}
}
|