aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netlink-psample.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-netlink-psample.c')
-rw-r--r--epan/dissectors/packet-netlink-psample.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-netlink-psample.c b/epan/dissectors/packet-netlink-psample.c
index b5a6f24e2f..dea18de671 100644
--- a/epan/dissectors/packet-netlink-psample.c
+++ b/epan/dissectors/packet-netlink-psample.c
@@ -166,11 +166,11 @@ dissect_psample_attrs(tvbuff_t *tvb, void *data, struct packet_netlink_data *nl_
return 1;
case WS_PSAMPLE_ATTR_OUT_TC_OCC:
proto_tree_add_item_ret_uint64(tree, hf_psample_out_tc_occ, tvb, offset, len, nl_data->encoding, &value64);
- proto_item_append_text(tree, ": %"G_GUINT64_FORMAT, value64);
+ proto_item_append_text(tree, ": %"PRIu64, value64);
return 1;
case WS_PSAMPLE_ATTR_LATENCY:
proto_tree_add_item_ret_uint64(tree, hf_psample_latency, tvb, offset, len, nl_data->encoding, &value64);
- proto_item_append_text(tree, ": %"G_GUINT64_FORMAT, value64);
+ proto_item_append_text(tree, ": %"PRIu64, value64);
return 1;
case WS_PSAMPLE_ATTR_TIMESTAMP:
timestamp = tvb_get_guint64(tvb, offset, nl_data->encoding);