diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-02 19:24:18 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-02 19:24:18 +0000 |
commit | 1fb814c69fe24e3b365dbf485d1fbef4a9993c4f (patch) | |
tree | 23a89149f5c34a2afe3bb60ae6a14ee3bbe9afaf /plugins/Boltun/Engine/MyCodeCvt.cpp | |
parent | a8af2c147a524df5f48e81910331febf042b505f (diff) |
64-bit compilation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@267 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Boltun/Engine/MyCodeCvt.cpp')
-rw-r--r-- | plugins/Boltun/Engine/MyCodeCvt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Boltun/Engine/MyCodeCvt.cpp b/plugins/Boltun/Engine/MyCodeCvt.cpp index 71e056291a..49722e6f7b 100644 --- a/plugins/Boltun/Engine/MyCodeCvt.cpp +++ b/plugins/Boltun/Engine/MyCodeCvt.cpp @@ -64,7 +64,7 @@ int MyCodeCvt::do_length(const _St& _State, const _To* _F1, #endif
{
- return (_N2 < (size_t)(_L1 - _F1)) ? _N2 : _L1 - _F1;
+ return (_N2 < (size_t)(_L1 - _F1)) ? (int)_N2 : (int)(_L1 - _F1);
}
bool MyCodeCvt::do_always_noconv() const _THROW0()
|