diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-29 19:22:32 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-29 19:22:32 +0000 |
commit | 811039b40796ba732b12b5d2dfb52111980569ac (patch) | |
tree | acf84c2a6063e28a987a257ce1d34382af1ce279 /updater/utils.cpp | |
parent | 0c7c7a21cba95444a5253f29caa8973dcd66befd (diff) |
x64 port
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@446 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/utils.cpp')
-rw-r--r-- | updater/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/utils.cpp b/updater/utils.cpp index f370e68..5be5897 100644 --- a/updater/utils.cpp +++ b/updater/utils.cpp @@ -52,7 +52,7 @@ bool CreatePath(const TCHAR *path) { TCHAR folder[MAX_PATH];
_tcscpy(folder, path);
- int i = 0;
+ size_t i = 0;
if(folder[0] && folder[1] && folder[1] == ':') i += 2; // skip drive letter
|