Skip to content

Commit

Permalink
fix big caused by small type
Browse files Browse the repository at this point in the history
  • Loading branch information
mogaika committed Feb 1, 2024
1 parent 6d974cf commit 718e9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upf/upf_ipfix.c
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ upf_ipfix_ensure_flow_ipfix_info (flow_entry_t *f, flow_direction_t direction)
upf_ipfix_info_t *other_info = 0;
u32 iidx;

if ((iidx = flow_side (f, direction)->ipfix.info_index != ~0))
if ((iidx = flow_side (f, direction)->ipfix.info_index) != ~0)
return iidx;

sx = pool_elt_at_index (gtm->sessions, f->session_index);
Expand Down

0 comments on commit 718e9d6

Please sign in to comment.