aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ldp.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-10-20 02:24:34 +0000
committerEvan Huus <eapache@gmail.com>2013-10-20 02:24:34 +0000
commitf5442e27a117c52e726588ef0b416349de07e1bb (patch)
treefacd353674f4dec4423a2648db04bede17a851a3 /epan/dissectors/packet-ldp.c
parentb054d20a14ff69d3372f07e40ffdc50257423e18 (diff)
Fix format error.
svn path=/trunk/; revision=52702
Diffstat (limited to 'epan/dissectors/packet-ldp.c')
-rw-r--r--epan/dissectors/packet-ldp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ldp.c b/epan/dissectors/packet-ldp.c
index 1aaf80db7f..d96dbe1c1c 100644
--- a/epan/dissectors/packet-ldp.c
+++ b/epan/dissectors/packet-ldp.c
@@ -1449,7 +1449,7 @@ dissect_tlv_atm_label(tvbuff_t *tvb, packet_info *pinfo, guint offset, proto_tre
proto_tree *ti, *val_tree;
if (rem != 4){
- proto_tree_add_expert_format(tree, pinfo, &ei_ldp_tlv_fec_len, tvb, offset, rem, "Error processing ATM Label TLV: length is %d, should be 4");
+ proto_tree_add_expert_format(tree, pinfo, &ei_ldp_tlv_fec_len, tvb, offset, rem, "Error processing ATM Label TLV: length is %d, should be 4", rem);
return;
}
ti=proto_tree_add_text(tree, tvb, offset, rem, "ATM Label");