Skip to content

Commit 2d40560

Browse files
manchozfacchinm
authored andcommitted
Fix MsgPackRPC Notify (::send) implementation
1 parent 7754232 commit 2d40560

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libraries/RPC/src/RPC_client.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ class client {
5353

5454
auto args_obj = std::make_tuple(args...);
5555
auto call_obj = std::make_tuple(
56-
static_cast<uint8_t>(client::request_type::notification), (const int)callThreadId, func_name,
57-
args_obj);
56+
static_cast<uint8_t>(client::request_type::notification), func_name, args_obj);
5857

5958
auto buffer = new RPCLIB_MSGPACK::sbuffer;
6059
RPCLIB_MSGPACK::pack(*buffer, call_obj);

0 commit comments

Comments
 (0)