File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ cetl::optional<std::string> Application::init()
6969 ipc_router_ = common::ipc::ServerRouter::make (memory_, std::move (server_pipe));
7070
7171 using Ch = ExecCmdChannel;
72- ipc_router_->registerChannel <ExecCmdChannel>(" daemon" , [this ](ExecCmdChannel&& ch, const auto & request ) {
72+ ipc_router_->registerChannel <ExecCmdChannel>(" daemon" , [this ](ExecCmdChannel&& ch, const auto &) {
7373 //
7474 ::syslog (LOG_DEBUG, " D << 🆕 Ch created." ); // NOLINT
7575 ::syslog (LOG_DEBUG, " D << 🔵 Ch ininital msg." ); // NOLINT
@@ -84,8 +84,8 @@ cetl::optional<std::string> Application::init()
8484 ::syslog (LOG_DEBUG, " D << 🟢 Ch connected." ); // NOLINT
8585
8686 ::syslog (LOG_DEBUG, " D >> 🔵 Ch Msg." ); // NOLINT
87- ExecCmd cmd{&memory_};
88- const int result = ipc_exec_cmd_ch_->send (cmd);
87+ const ExecCmd cmd{&memory_};
88+ const int result = ipc_exec_cmd_ch_->send (cmd);
8989 (void ) result;
9090 },
9191 [this ](const ExecCmdChannel::Input& input) {
You can’t perform that action at this time.
0 commit comments