aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/m2m
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-09-09 00:11:19 +0000
committerMichael Mann <mmann78@netscape.net>2013-09-09 00:11:19 +0000
commit7ec34a52c5d63484159a2992f1fe254c94327145 (patch)
treeb177af1217a5b025b9b637fb6340870f75a7f437 /plugins/m2m
parenta50c42821d59294164ba884403d1587d8f5ed97e (diff)
expert_add_info_format_text -> expert_add_info_format
svn path=/trunk/; revision=51850
Diffstat (limited to 'plugins/m2m')
-rw-r--r--plugins/m2m/packet-m2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/m2m/packet-m2m.c b/plugins/m2m/packet-m2m.c
index 59df3fd3bc..618e77307b 100644
--- a/plugins/m2m/packet-m2m.c
+++ b/plugins/m2m/packet-m2m.c
@@ -396,7 +396,7 @@ static void dissect_m2m(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (offset - tlv_offset == expected_len) {
proto_tree_add_tlv(&m2m_tlv_info, tvb, offset - tlv_offset, pinfo, tlv_tree, hf, encoding);
} else {
- expert_add_info_format_text(pinfo, NULL, &ei_m2m_unexpected_length, "Expected length %d, got %d.", expected_len, offset - tlv_offset);
+ expert_add_info_format(pinfo, NULL, &ei_m2m_unexpected_length, "Expected length %d, got %d.", expected_len, offset - tlv_offset);
}
}
offset += tlv_len;