diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-31 05:12:22 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-31 05:12:22 +0000 |
commit | 8f7401d0d32b864e7c1efbe696fb60d010f001bb (patch) | |
tree | 77038f25c21f5397f98db7165f07b0655a0f7b7b /tipper/tipper.cpp | |
parent | 811039b40796ba732b12b5d2dfb52111980569ac (diff) |
x64 port
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@447 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'tipper/tipper.cpp')
-rw-r--r-- | tipper/tipper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tipper/tipper.cpp b/tipper/tipper.cpp index 15acb3d..100ecf9 100644 --- a/tipper/tipper.cpp +++ b/tipper/tipper.cpp @@ -137,7 +137,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { update.szComponentName = pluginInfo.shortName;
update.pbVersion = (BYTE *)CreateVersionString(pluginInfo.version, szVersion);
- update.cpbVersion = strlen((char *)update.pbVersion);
+ update.cpbVersion = (int)strlen((char *)update.pbVersion);
update.szBetaChangelogURL = "https://server.scottellis.com.au/wsvn/mim_plugs/tipper/?op=log&rev=0&sc=0&isdir=1";
update.szUpdateURL = UPDATER_AUTOREGISTER;
@@ -155,7 +155,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { #endif
update.pbBetaVersionPrefix = (BYTE *)"Tipper version ";
- update.cpbBetaVersionPrefix = strlen((char *)update.pbBetaVersionPrefix);
+ update.cpbBetaVersionPrefix = (int)strlen((char *)update.pbBetaVersionPrefix);
CallService(MS_UPDATE_REGISTER, 0, (WPARAM)&update);
}
|