aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-redback.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-05-29 18:52:42 +0000
committerGuy Harris <guy@alum.mit.edu>2007-05-29 18:52:42 +0000
commit5a43799a17572c9a9962dc76fd681a14bb7689de (patch)
tree362095c0935c7f6d8f0018b30fb612222ea70263 /epan/dissectors/packet-redback.c
parentbf167869027678071c584520fee3e95f88680116 (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. svn path=/trunk/; revision=21990
Diffstat (limited to 'epan/dissectors/packet-redback.c')
-rw-r--r--epan/dissectors/packet-redback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-redback.c b/epan/dissectors/packet-redback.c
index d2ffee6747..9fae96d1fd 100644
--- a/epan/dissectors/packet-redback.c
+++ b/epan/dissectors/packet-redback.c
@@ -72,7 +72,7 @@ dissect_redback(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tisub = proto_tree_add_text (subtree, tvb, 4, 4,
"Flags: 0x%08x", flags);
tisub = proto_tree_add_text (subtree, tvb, 8, 8,
- "Circuit: 0x%" PRIx64, circuit);
+ "Circuit: 0x%" G_GINT64_MODIFIER "x", circuit);
tisub = proto_tree_add_text (subtree, tvb, 16, 2,
"Length: %u", length);
tisub = proto_tree_add_text (subtree, tvb, 18, 2,