summaryrefslogtreecommitdiff
path: root/gtk/sip_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/sip_stat.c
parentac88e96246b9da349c61e26c88a66fea9626cf0c (diff)
downloadwireshark-8608c8f1ded10fbaee00ff90d1fe7ca90b266629.tar.gz
Fix some "format not a string literal and no format arguments" warnings.
svn path=/trunk/; revision=26641
Diffstat (limited to 'gtk/sip_stat.c')
-rw-r--r--gtk/sip_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/sip_stat.c b/gtk/sip_stat.c
index 710db5b58b..056f09d2dc 100644
--- a/gtk/sip_stat.c
+++ b/gtk/sip_stat.c
@@ -630,7 +630,7 @@ gtk_sipstat_init(const char *optarg, void *userdata _U_)
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);