summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/m_protocols.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-07-21 10:22:30 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-07-21 10:22:30 +0000
commit77dc4f6080513b9ea76e12b3e0e6b8ff9d93449c (patch)
tree2fd694b31a9f8b33c7c5163bebf2fee0b8a2c85a /plugins/MirLua/src/m_protocols.cpp
parent82836a6c4e1fd6759dcccc21f7c337219584025f (diff)
MirLua: fix redundant (char*) cast
git-svn-id: http://svn.miranda-ng.org/main/trunk@17115 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_protocols.cpp')
-rw-r--r--plugins/MirLua/src/m_protocols.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/MirLua/src/m_protocols.cpp b/plugins/MirLua/src/m_protocols.cpp
index 423d732c32..889be34a42 100644
--- a/plugins/MirLua/src/m_protocols.cpp
+++ b/plugins/MirLua/src/m_protocols.cpp
@@ -97,8 +97,7 @@ static int lua_ChainSend(lua_State *L)
WPARAM wParam = (WPARAM)luaM_tomparam(L, 3);
LPARAM lParam = (LPARAM)luaM_tomparam(L, 4);
- CCSDATA ccs = { hContact, service, wParam, lParam };
- INT_PTR res = Proto_ChainSend(0, &ccs);
+ INT_PTR res = ProtoChainSend(hContact, service, wParam, lParam);
lua_pushinteger(L, res);
return 1;
@@ -111,8 +110,7 @@ static int lua_ChainRecv(lua_State *L)
WPARAM wParam = (WPARAM)luaM_tomparam(L, 3);
LPARAM lParam = (LPARAM)luaM_tomparam(L, 4);
- CCSDATA ccs = { hContact, service, wParam, lParam };
- INT_PTR res = Proto_ChainRecv(0, &ccs);
+ INT_PTR res = ProtoChainRecv(hContact, service, wParam, lParam);
lua_pushinteger(L, res);
return 1;