diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-22 18:43:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-22 18:43:58 +0300 |
commit | c01381d4be42c0de9cddbb0980af0ee3adff4fb7 (patch) | |
tree | b6c97fb6b169c851cc9a4ed22c6bc982cc3be727 /protocols/Steam | |
parent | 9cb1507b7ad4f8546496e3bcd765949509bb2c9e (diff) |
compilation fix
Diffstat (limited to 'protocols/Steam')
-rw-r--r-- | protocols/Steam/src/steam_polling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_polling.cpp b/protocols/Steam/src/steam_polling.cpp index cdfcfd797d..00c58ba145 100644 --- a/protocols/Steam/src/steam_polling.cpp +++ b/protocols/Steam/src/steam_polling.cpp @@ -51,7 +51,7 @@ void CSteamProto::ParsePollData(JSONNode *data) else if (!lstrcmpi(type, L"typing")) { // FIXME: Temporary solution for receivng too many duplicated typing events; should be reworked better - if (typingUser == steamId) + if (typingUser == (char*)steamId) continue; typingUser = steamId; |