aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/uat_gui.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-10-31 09:53:56 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-10-31 09:53:56 +0000
commit8608c8f1ded10fbaee00ff90d1fe7ca90b266629 (patch)
tree6ea97aeb14456f5545eb319cf5f79e94bb8fb0e9 /gtk/uat_gui.c
parentac88e96246b9da349c61e26c88a66fea9626cf0c (diff)
Fix some "format not a string literal and no format arguments" warnings.
svn path=/trunk/; revision=26641
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 72f253cdf1..05f34be6fe 100644
--- a/gtk/uat_gui.c
+++ b/gtk/uat_gui.c
@@ -153,7 +153,7 @@ static char* fld_tostr(void* rec, uat_field_t* f) {
for (i=0; i<len;i++) g_string_append_printf(s,"%.2X",((guint8*)ptr)[i]);
- out = ep_strdup_printf(s->str);
+ out = ep_strdup(s->str);
g_string_free(s,TRUE);
break;