Skip to content

Commit aaecd15

Browse files
committed
build fix
1 parent 0c6218f commit aaecd15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/daemon/engine/application.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)