aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.c
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-06-07 23:25:46 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-06-07 23:25:46 +0000
commit6fd98280affdd0d798293f36e597d09b7069f38a (patch)
tree4139037aa4527446d54dc26034dd1a7a680f533d /epan/dissectors/packet-rtp.c
parentc855114e7f07fee1a91ca4a8204bc5a6b03c5213 (diff)
From: Martin Mathieson
fix cases where %d has been used instead of %u... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14583 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rtp.c')
-rw-r--r--epan/dissectors/packet-rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtp.c b/epan/dissectors/packet-rtp.c
index 52d9d10dcd..7666f527da 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -805,7 +805,7 @@ static void show_setup_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* Create setup info subtree with summary info. */
ti = proto_tree_add_string_format(tree, hf_rtp_setup, tvb, 0, 0,
"",
- "Stream setup by %s (frame %d)",
+ "Stream setup by %s (frame %u)",
p_conv_data->method,
p_conv_data->frame_number);
PROTO_ITEM_SET_GENERATED(ti);