diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-22 15:30:26 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-22 15:30:26 +0000 |
commit | 3af23d2c1dab24cbf3a6f971016ca5092249f63d (patch) | |
tree | 02d2925aa195a39fa675bd6f63bb1d476ef5d120 /protocols/Tlen/src/tlen_presence.cpp | |
parent | 4d8d70c251bae530d5a410e24fa597aea51e4f78 (diff) |
Tlen: vc2015 compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14633 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tlen/src/tlen_presence.cpp')
-rw-r--r-- | protocols/Tlen/src/tlen_presence.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tlen/src/tlen_presence.cpp b/protocols/Tlen/src/tlen_presence.cpp index c68af8606c..b56b72c411 100644 --- a/protocols/Tlen/src/tlen_presence.cpp +++ b/protocols/Tlen/src/tlen_presence.cpp @@ -93,7 +93,7 @@ void TlenProcessPresence(XmlNode *node, TlenProtocol *proto) if (!item->infoRequested) { int iqId = TlenSerialNext(proto); item->infoRequested = TRUE; - TlenSend( proto, "<iq type='get' id='"TLEN_IQID"%d'><query xmlns='jabber:iq:info' to='%s'></query></iq>", iqId, from); + TlenSend( proto, "<iq type='get' id='" TLEN_IQID "%d'><query xmlns='jabber:iq:info' to='%s'></query></iq>", iqId, from); } if (proto->tlenOptions.enableVersion && !item->versionRequested) { item->versionRequested = TRUE; |