diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-05 14:50:31 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-05 14:50:31 +0000 |
commit | ae10177eb1e515eada4aa2b4295aab02d1f7c176 (patch) | |
tree | a42597711316c7a9757e3598c48cf76c3fdf4a72 /protocols/IcqOscarJ/src/icq_proto.cpp | |
parent | 8961403e3a5002fd284422f8c6ec5a78fdd81816 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@11251 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 746987b17e..b2965b9888 100644 --- a/protocols/IcqOscarJ/src/icq_proto.cpp +++ b/protocols/IcqOscarJ/src/icq_proto.cpp @@ -773,7 +773,7 @@ HANDLE __cdecl CIcqProto::SearchBasic(const PROTOCHAR *pszSearch) char pszUIN[255];
int nHandle = 0;
- int i, j;
+ size_t i, j;
if (!m_bAimEnabled) {
for (i = j = 0; (i < mir_wstrlen(pszSearch)) && (j < 255); i++) { // we take only numbers
|