From 39545a5a7c9ea4d1493cd94abbd6e54ecd76f8b6 Mon Sep 17 00:00:00 2001 From: Philip Van Hoof Date: Wed, 2 Mar 2005 16:00:26 +0000 Subject: Corrected a little oeps svn path=/trunk/; revision=28938 --- plugins/save-calendar/csv-format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/save-calendar/csv-format.c') diff --git a/plugins/save-calendar/csv-format.c b/plugins/save-calendar/csv-format.c index e414571af8..1d9cf8ce67 100644 --- a/plugins/save-calendar/csv-format.c +++ b/plugins/save-calendar/csv-format.c @@ -161,7 +161,7 @@ add_time_to_csv (GString *line, icaltimetype *time, CsvConfig *config) if (time) { gboolean needquotes = FALSE; struct tm mytm = icaltimetype_to_tm (time); - gchar *str = (char*) g_malloc (sizeof (char) * 200); + gchar *str = (gchar*) g_malloc (sizeof (gchar) * 200); /* * Translator: the %F %T is the thirth argument for a strftime function. -- cgit