Skip to content

Commit

Permalink
fix(libsinsp): typo in source_idx_by_plugin_id iterator
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Scolaro <[email protected]>
  • Loading branch information
therealbobo authored and poiana committed Aug 10, 2023
1 parent c8f725b commit d625859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userspace/libsinsp/plugin_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class sinsp_plugin_manager
if (plugin_id != m_last_source_in)
{
auto it = m_plugins_id_source_index.find(plugin_id);
if(it == m_plugins_id_index.end())
if(it == m_plugins_id_source_index.end())
{
found = false;
return sinsp_no_event_source_idx;
Expand Down

0 comments on commit d625859

Please sign in to comment.