aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-blip.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-blip.c')
-rw-r--r--epan/dissectors/packet-blip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-blip.c b/epan/dissectors/packet-blip.c
index 81fe063b68..983c7a4bbe 100644
--- a/epan/dissectors/packet-blip.c
+++ b/epan/dissectors/packet-blip.c
@@ -181,7 +181,7 @@ message_hash_key_convo(packet_info *pinfo,
// msgtype:srcport:destport:messagenum
const gchar *msg_type = get_message_type(value_frame_flags);
- gchar *hash_key = wmem_strdup_printf(pinfo->pool, "%s:%u:%u:%" G_GINT64_MODIFIER "u",
+ gchar *hash_key = wmem_strdup_printf(pinfo->pool, "%s:%u:%u:%" PRIu64,
msg_type, pinfo->srcport, pinfo->destport, value_message_num);
return hash_key;
@@ -445,7 +445,7 @@ dissect_blip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, _U_ void *data
offset += varint_frame_flags_length;
const gchar* msg_type = get_message_type(value_frame_flags);
- gchar* msg_num = wmem_strdup_printf(pinfo->pool, "#%" G_GUINT64_FORMAT, value_message_num);
+ gchar* msg_num = wmem_strdup_printf(pinfo->pool, "#%" PRIu64, value_message_num);
gchar* col_info = wmem_strconcat(pinfo->pool, msg_type, msg_num, NULL);
col_add_str(pinfo->cinfo, COL_INFO, col_info);