From 6242cdab509c8f3ca017b008a37e1ec70be1e708 Mon Sep 17 00:00:00 2001 From: hiro Date: Mon, 24 Jan 2011 01:43:40 +0000 Subject: 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 --- src/summaryview.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/summaryview.c') 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); -- cgit v1.2.3