aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2022-09-29 05:59:12 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2022-09-29 05:59:12 +0000
commitb092fa05dae7672ac2c996c0f9107df7dc29da6c (patch)
treefe265a074f7fcf68abbe5f0e9ad51150a46cdfac /plugins
parentb9820231070a113b804ebf0c3b4c3e424c98f2ee (diff)
Replace the last of PROTO_ITEM_ macro calls with function calls
Diffstat (limited to 'plugins')
-rw-r--r--plugins/epan/profinet/packet-pn-rsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/epan/profinet/packet-pn-rsi.c b/plugins/epan/profinet/packet-pn-rsi.c
index 85a6cd94f4..a532f2169a 100644
--- a/plugins/epan/profinet/packet-pn-rsi.c
+++ b/plugins/epan/profinet/packet-pn-rsi.c
@@ -371,7 +371,7 @@ dissect_pn_rta_remaining_user_data_bytes(tvbuff_t *tvb, int offset, packet_info
pn_rsi_tree_item = proto_tree_get_parent(tree);
pi = proto_tree_add_uint(pn_rsi_tree_item, hf_pn_rsi_reassembled_in,
tvb, 0, 0, fd_reass->reassembled_in);
- PROTO_ITEM_SET_GENERATED(pi);
+ proto_item_set_generated(pi);
}
}