summaryrefslogtreecommitdiff
path: root/protocols/Tox/src
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-05-31 14:49:05 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-05-31 14:49:05 +0000
commit2738cf4311501acfc1b0e2de74b51b0edc18cdd2 (patch)
tree135e74e4091c0878e4ea9a3291af161163fb8179 /protocols/Tox/src
parent6ebe834f24f0e8bc89e0be102eaf0fb618b0788d (diff)
Tox: compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@13936 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r--protocols/Tox/src/tox_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp
index ed44c09630..72d0c1481f 100644
--- a/protocols/Tox/src/tox_utils.cpp
+++ b/protocols/Tox/src/tox_utils.cpp
@@ -103,7 +103,7 @@ INT_PTR CToxProto::ParseToxUri(WPARAM, LPARAM lParam)
PROTOSEARCHRESULT psr = { sizeof(psr) };
psr.flags = PSR_TCHAR;
- psr.id = mir_tstrdup(&uri[4]);
+ psr.id.t = mir_tstrdup(&uri[4]);
ADDCONTACTSTRUCT acs = { HANDLE_SEARCHRESULT };
acs.szProto = proto->m_szModuleName;