diff options
author | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2012-01-01 20:39:34 +0000 |
---|---|---|
committer | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2012-01-01 20:39:34 +0000 |
commit | f251f8ffa34a0b9699aff9ca3ed03fec8f2d2e51 (patch) | |
tree | 976da398337868638ccafce9fbff71239a8449eb /SecureIM/options.cpp | |
parent | f39683393b0f9c31559ef05c824774541d9a19be (diff) |
SecureIM: x64 fixes
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@253 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'SecureIM/options.cpp')
-rw-r--r-- | SecureIM/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SecureIM/options.cpp b/SecureIM/options.cpp index e2ba837..17123e1 100644 --- a/SecureIM/options.cpp +++ b/SecureIM/options.cpp @@ -1847,11 +1847,11 @@ LPSTR LoadKeys(LPCSTR file,BOOL priv) { }
else
if(b && strncmp(keys+i,end,strlen(end))==0) {
- i+=strlen(keys+i);
+ i+=(int)strlen(keys+i);
b=false;
}
if(b) {
- i+=strlen(keys+i);
+ i+=(int)strlen(keys+i);
}
}
*(keys+i)='\0';
|