diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-01 14:03:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-01 14:03:20 +0000 |
commit | eac530cf8f1c8b79e7225f4b541a25ec8a3eb215 (patch) | |
tree | ecd9165a9823a0ac8133b57ea4fef032ada5cb07 /protocols/Twitter/proto.cpp | |
parent | 0edc1a2efbe7d5dfdc97b5c5015e3844273df649 (diff) |
fix for message encoding
git-svn-id: http://svn.miranda-ng.org/main/trunk@1745 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/proto.cpp')
-rw-r--r-- | protocols/Twitter/proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Twitter/proto.cpp b/protocols/Twitter/proto.cpp index 40f0e30ec4..f5b0698867 100644 --- a/protocols/Twitter/proto.cpp +++ b/protocols/Twitter/proto.cpp @@ -527,7 +527,7 @@ void TwitterProto::LOG(TCHAR *fmt,...) // be in MessageLoop
void TwitterProto::SendTweetWorker(void *p)
{
- if(p == 0)
+ if (p == 0)
return;
char *text = static_cast<char*>(p);
|