From a4a674c9f1018333f0c83368ed5de3bff453799d Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Wed, 2 Mar 2005 18:23:20 +0000 Subject: Reverted not approved patch svn path=/trunk/; revision=28941 --- plugins/save-calendar/ChangeLog | 5 ----- plugins/save-calendar/csv-format.c | 2 +- plugins/save-calendar/rdf-format.c | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/plugins/save-calendar/ChangeLog b/plugins/save-calendar/ChangeLog index a34d307635..e9c35b06c3 100644 --- a/plugins/save-calendar/ChangeLog +++ b/plugins/save-calendar/ChangeLog @@ -1,8 +1,3 @@ -2005-03-02 Philip Van Hoof - - * rdf-format.c: Fixes for Bug #73099 and Bug #73098 - * csv-format.c: Changed malloc to g_malloc and char to gchar - 2005-03-02 Philip Van Hoof * csv-format.c: Fixes for Bug #73099 and Bug #73098 diff --git a/plugins/save-calendar/csv-format.c b/plugins/save-calendar/csv-format.c index 1d9cf8ce67..e414571af8 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 = (gchar*) g_malloc (sizeof (gchar) * 200); + gchar *str = (char*) g_malloc (sizeof (char) * 200); /* * Translator: the %F %T is the thirth argument for a strftime function. diff --git a/plugins/save-calendar/rdf-format.c b/plugins/save-calendar/rdf-format.c index 1f120b46a4..268b17798a 100644 --- a/plugins/save-calendar/rdf-format.c +++ b/plugins/save-calendar/rdf-format.c @@ -146,7 +146,7 @@ add_time_to_rdf (xmlNodePtr node, const gchar *tag, icaltimetype *time) if (time) { xmlNodePtr cur_node = NULL; struct tm mytm = icaltimetype_to_tm (time); - gchar *str = (gchar*) g_malloc (sizeof (gchar) * 200); + gchar *str = (gchar*) g_malloc (sizeof (char) * 200); gchar *tmp = NULL; /* -- cgit v1.2.3