aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2018-11-12 08:34:47 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2018-11-12 08:09:33 +0000
commitb0e8abcf1e616124b215adafa7736e07b2f773fd (patch)
tree6d8da39b153ac8f334ad8115c2fd28c2b04ae7fa /epan/dissectors
parenta8c40412d8d73817a8030d9553d0db354ce002ba (diff)
blip: Use correct guint64 printf modifier
Change-Id: I6e326cc5396467a0f65edbde1148414a10e22df2 Reviewed-on: https://code.wireshark.org/review/30580 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-blip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-blip.c b/epan/dissectors/packet-blip.c
index 4c33c43104..e27d42139e 100644
--- a/epan/dissectors/packet-blip.c
+++ b/epan/dissectors/packet-blip.c
@@ -155,7 +155,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(wmem_packet_scope(), "%s:%u:%u:%lu",
+ gchar *hash_key = wmem_strdup_printf(wmem_packet_scope(), "%s:%u:%u:%" G_GINT64_MODIFIER "u",
msg_type, pinfo->srcport, pinfo->destport, value_message_num);
return hash_key;