fix(userspace): solve compilation issues

Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
This commit is contained in:
Jason Dellaluce 2024-02-23 08:44:19 +00:00 committed by poiana
parent c13cf79aab
commit 3b06fb2cbb

View File

@ -291,9 +291,9 @@ inline void falco_outputs::push(const ctrl_msg& cmsg)
m_outputs_queue_num_drops++; m_outputs_queue_num_drops++;
} }
#else #else
for (auto o : m_outputs) for (const auto& o : m_outputs)
{ {
process_msg(o, cmsg); process_msg(o.get(), cmsg);
} }
#endif #endif
} }