summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_thread.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-09-20 13:26:16 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-09-20 13:26:16 +0000
commitbc0b5ed1e7f371820a08a9fdd275be68afe2fbe9 (patch)
tree505ba51290ff2137d3be8e8401cf76192b26a5f0 /protocols/JabberG/src/jabber_thread.cpp
parent61e43dca25a80a451cf2b7dbbc4931a8f2a96d80 (diff)
code cleaning & simplification
git-svn-id: http://svn.miranda-ng.org/main/trunk@6138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rw-r--r--protocols/JabberG/src/jabber_thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp
index 0ded9a90c9..7df6e3fc41 100644
--- a/protocols/JabberG/src/jabber_thread.cpp
+++ b/protocols/JabberG/src/jabber_thread.cpp
@@ -2041,7 +2041,7 @@ int ThreadData::send(char* buffer, int bufsize)
return 0;
if (bufsize == -1)
- bufsize = strlen(buffer);
+ bufsize = (int)strlen(buffer);
WaitForSingleObject(iomutex, 6000);