diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index 78f9150aaf..dcd5e5d6b7 100644 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -2000,7 +2000,7 @@ int ThreadData::recv(char* buf, size_t len) if (useZlib)
return zlibRecv(buf, (long)len);
- return proto->WsRecv(s, buf, len, MSG_DUMPASTEXT);
+ return proto->WsRecv(s, buf, (long)len, MSG_DUMPASTEXT);
}
int ThreadData::send(char* buf, int bufsize)
|