diff options
Diffstat (limited to 'calendar/gui/e-cal-component-preview.c')
-rw-r--r-- | calendar/gui/e-cal-component-preview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-component-preview.c b/calendar/gui/e-cal-component-preview.c index 0a4c777c67..bb659f3c4a 100644 --- a/calendar/gui/e-cal-component-preview.c +++ b/calendar/gui/e-cal-component-preview.c @@ -284,7 +284,7 @@ write_html (GtkHTMLStream *stream, ECal *ecal, ECalComponent *comp, icaltimezone str = g_string_append_c (str, text.value[i]); } - gtk_html_stream_printf (stream, str->str); + gtk_html_stream_printf (stream, "%s", str->str); g_string_free (str, TRUE); } |