diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index 95e0893b1b..8613d92e3e 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -353,7 +353,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) accum_multival_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO, YAHOO_ICON, 0); if (accum->len > 0) - gtk_html_stream_printf (html_stream, accum->str); + gtk_html_stream_printf (html_stream, "%s", accum->str); end_block (html_stream); @@ -368,7 +368,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) if (accum->len > 0) { start_block (html_stream, _("work")); - gtk_html_stream_printf (html_stream, accum->str); + gtk_html_stream_printf (html_stream, "%s", accum->str); end_block (html_stream); } @@ -383,7 +383,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) if (accum->len > 0) { start_block (html_stream, _("personal")); - gtk_html_stream_printf (html_stream, accum->str); + gtk_html_stream_printf (html_stream, "%s", accum->str); end_block (html_stream); } |