mirror of
https://github.com/falcosecurity/falco.git
synced 2025-08-01 06:29:47 +00:00
fix(userspace): solve compilation issues
Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
This commit is contained in:
parent
c13cf79aab
commit
3b06fb2cbb
@ -291,9 +291,9 @@ inline void falco_outputs::push(const ctrl_msg& cmsg)
|
||||
m_outputs_queue_num_drops++;
|
||||
}
|
||||
#else
|
||||
for (auto o : m_outputs)
|
||||
for (const auto& o : m_outputs)
|
||||
{
|
||||
process_msg(o, cmsg);
|
||||
process_msg(o.get(), cmsg);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user