summaryrefslogtreecommitdiff
path: root/yapp/services.cpp
diff options
context:
space:
mode:
author(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2009-03-31 05:16:22 +0000
committer(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2009-03-31 05:16:22 +0000
commitf8840b16acaa5cb11a4440ea62a96731a24f4d6e (patch)
treef0e38ae1106bf095e1129231693ef4b79c94de3a /yapp/services.cpp
parent8f7401d0d32b864e7c1efbe696fb60d010f001bb (diff)
x64 port
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@448 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'yapp/services.cpp')
-rw-r--r--yapp/services.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yapp/services.cpp b/yapp/services.cpp
index 1864728..0278e2f 100644
--- a/yapp/services.cpp
+++ b/yapp/services.cpp
@@ -16,7 +16,7 @@ void StripBBCodesInPlace(wchar_t *text) {
return;
int read = 0, write = 0;
- int len = wcslen(text);
+ int len = (int)wcslen(text);
while(read <= len) { // copy terminating null too
while(read <= len && text[read] != L'[') {