aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-01-24 01:43:40 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-01-24 01:43:40 +0000
commit6242cdab509c8f3ca017b008a37e1ec70be1e708 (patch)
treef9a89641f0c96b92101834f12ae204ab1c2a41c0 /src/summaryview.c
parentfda010cc0fbbce524b52a8eaa151e6bc9ad337ba (diff)
src/summaryview.c: fixed warnings about non-string literal format.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2818 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index 8429839d..478f287f 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -1523,7 +1523,7 @@ static void summary_select_prev_flagged(SummaryView *summaryview,
if (!found) {
if (notice)
- alertpanel_notice(notice);
+ alertpanel_notice("%s", notice);
} else {
gboolean visible;
visible = messageview_is_visible(summaryview->messageview);
@@ -1569,7 +1569,7 @@ static void summary_select_next_flagged(SummaryView *summaryview,
if (!found) {
if (notice)
- alertpanel_notice(notice);
+ alertpanel_notice("%s", notice);
} else {
gboolean visible;
visible = messageview_is_visible(summaryview->messageview);
@@ -2694,7 +2694,7 @@ gint summary_write_cache(SummaryView *summaryview)
if (item->cache_dirty) {
buf = g_strdup_printf(_("Writing summary cache (%s)..."),
item->path);
- debug_print(buf);
+ debug_print("%s", buf);
STATUSBAR_PUSH(summaryview->mainwin, buf);
gdk_flush();
g_free(buf);