aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/bootp_stat.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/bootp_stat.c
parentac88e96246b9da349c61e26c88a66fea9626cf0c (diff)
Fix some "format not a string literal and no format arguments" warnings.
svn path=/trunk/; revision=26641
Diffstat (limited to 'gtk/bootp_stat.c')
-rw-r--r--gtk/bootp_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/bootp_stat.c b/gtk/bootp_stat.c
index 4e499c3c16..d64541749f 100644
--- a/gtk/bootp_stat.c
+++ b/gtk/bootp_stat.c
@@ -246,7 +246,7 @@ dhcpstat_init(const char *optarg, void *userdata _U_)
dhcpstat_draw);
if (error_string){
/* error, we failed to attach to the tap. clean up */
- simple_dialog( ESD_TYPE_ERROR, ESD_BTN_OK, error_string->str );
+ simple_dialog( ESD_TYPE_ERROR, ESD_BTN_OK, "%s", error_string->str );
g_free(sp->filter);
g_free(sp);
g_string_free(error_string, TRUE);