diff options
Diffstat (limited to 'SecureIM/main.cpp')
-rw-r--r-- | SecureIM/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecureIM/main.cpp b/SecureIM/main.cpp index b1f71e0..7e29f0d 100644 --- a/SecureIM/main.cpp +++ b/SecureIM/main.cpp @@ -91,7 +91,7 @@ int __cdecl Load(PLUGINLINK *link) { char temp[MAX_PATH];
GetTempPath(sizeof(temp),temp);
GetLongPathName(temp,TEMP,sizeof(TEMP));
- TEMP_SIZE = strlen(TEMP);
+ TEMP_SIZE = (int)strlen(TEMP);
if(TEMP[TEMP_SIZE-1]=='\\') {
TEMP_SIZE--;
TEMP[TEMP_SIZE]='\0';
|