aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bootp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-29 18:52:42 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-29 18:52:42 +0000
commit9f1faf44629afcb49a3b193b2db7c82c5be7ec9e (patch)
tree362095c0935c7f6d8f0018b30fb612222ea70263 /epan/dissectors/packet-bootp.c
parent0dbcc0f8c80f0ba578b02ce1de305d7e50cc1512 (diff)
Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLib
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21990 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-bootp.c')
-rw-r--r--epan/dissectors/packet-bootp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bootp.c b/epan/dissectors/packet-bootp.c
index f106472c32..d47a422a6a 100644
--- a/epan/dissectors/packet-bootp.c
+++ b/epan/dissectors/packet-bootp.c
@@ -1170,7 +1170,7 @@ bootp_option(tvbuff_t *tvb, proto_tree *bp_tree, int voff, int eoff,
case AUTHEN_RDM_MONOTONIC_COUNTER:
proto_tree_add_text(v_tree, tvb, optoff, 8,
- "RDM Replay Detection Value: %" PRIx64,
+ "RDM Replay Detection Value: %" G_GINT64_MODIFIER "x",
tvb_get_ntoh64(tvb, optoff));
break;