aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/uat_gui.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-06 05:50:31 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-06 05:50:31 +0000
commit0d234f1e2230891924c9841b1a04597ca91d2034 (patch)
tree055e8196b39b4bf1eb3fd838bbe6f9515aa80f1f /gtk/uat_gui.c
parent94ab014f04075a1fb203e7613a1b360aabfaa12c (diff)
Fix some of the Errors/warnings detected by checkapi.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25244 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/uat_gui.c')
-rw-r--r--gtk/uat_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/uat_gui.c b/gtk/uat_gui.c
index 5103c2c9f0..68eeef64a4 100644
--- a/gtk/uat_gui.c
+++ b/gtk/uat_gui.c
@@ -151,7 +151,7 @@ static char* fld_tostr(void* rec, uat_field_t* f) {
GString* s = g_string_sized_new( len*2 + 1 );
guint i;
- for (i=0; i<len;i++) g_string_sprintfa(s,"%.2X",((guint8*)ptr)[i]);
+ for (i=0; i<len;i++) g_string_append_printf(s,"%.2X",((guint8*)ptr)[i]);
out = ep_strdup_printf(s->str);