summaryrefslogtreecommitdiff
path: root/epan/dtd_parse.l
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-05-11 18:33:49 +0000
committerBill Meier <wmeier@newsguy.com>2008-05-11 18:33:49 +0000
commitfe5c2d98205e726a049ae1c5f2ac5013c6bda60b (patch)
tree2c5118a7646e1fa773f2a668ffa4cae5cedb3c5d /epan/dtd_parse.l
parent319f71c537bf55a7cdfe0ea51d1909ad24c6491b (diff)
downloadwireshark-fe5c2d98205e726a049ae1c5f2ac5013c6bda60b.tar.gz
g_string_sprintf --> g_string_printf and g_string_sprintfa --> g_string_append_printf
svn path=/trunk/; revision=25276
Diffstat (limited to 'epan/dtd_parse.l')
-rw-r--r--epan/dtd_parse.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dtd_parse.l b/epan/dtd_parse.l
index 4556a05858..05c8a611b8 100644
--- a/epan/dtd_parse.l
+++ b/epan/dtd_parse.l
@@ -218,7 +218,7 @@ squoted ['][^\']*[']
<GET_ATTR_QUOTE>{get_attr_quote} { BEGIN GET_ATTR_VAL; }
<GET_ATTR_QUOTE>. {
- g_string_sprintfa(build_data->error,
+ g_string_append_printf(build_data->error,
"error in wireshark:protocol xmpli at %s : could not find attribute value!",
location);
yyterminate();
@@ -238,7 +238,7 @@ squoted ['][^\']*[']
}
if (! got_it) {
- g_string_sprintfa(build_data->error,
+ g_string_append_printf(build_data->error,
"error in wireshark:protocol xmpli at %s : no such parameter %s!",
location, attr_name);
g_free(attr_name);