summaryrefslogtreecommitdiff
path: root/epan/show_exception.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-09-09 01:02:44 +0000
committerMichael Mann <mmann78@netscape.net>2013-09-09 01:02:44 +0000
commitbffe25fdc22c076cca8bb5b48aac4e80d5fbd730 (patch)
tree98e3953a93001e8fc858bda8261e4ef47c80dc84 /epan/show_exception.c
parent9e3f9b449f5c25ad7266bdef972212e9f29114f7 (diff)
downloadwireshark-bffe25fdc22c076cca8bb5b48aac4e80d5fbd730.tar.gz
Complete the conversion of expert_add_info_format_text -> expert_add_info_format.
svn path=/trunk/; revision=51853
Diffstat (limited to 'epan/show_exception.c')
-rw-r--r--epan/show_exception.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/show_exception.c b/epan/show_exception.c
index eddcdb755a..cc915035ed 100644
--- a/epan/show_exception.c
+++ b/epan/show_exception.c
@@ -128,7 +128,7 @@ show_exception(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
pinfo->current_proto, pinfo->fd->num,
exception_message == NULL ?
dissector_error_nomsg : exception_message);
- expert_add_info_format_text(pinfo, item, &ei_malformed_dissector_bug, "%s",
+ expert_add_info_format(pinfo, item, &ei_malformed_dissector_bug, "%s",
exception_message == NULL ?
dissector_error_nomsg : exception_message);
break;
@@ -144,7 +144,7 @@ show_exception(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
pinfo->current_proto,
exception_message == NULL ?
dissector_error_nomsg : exception_message);
- expert_add_info_format_text(pinfo, item, &ei_malformed_reassembly, "%s",
+ expert_add_info_format(pinfo, item, &ei_malformed_reassembly, "%s",
exception_message == NULL ?
dissector_error_nomsg : exception_message);
break;