aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2004-09-02 16:57:34 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-09-02 16:57:34 +0800
commit59dc75996549976ef319eeb52154bdafbd4ba05d (patch)
tree1a29736293924cb96bdd690c7e65be03aaa37686
parented5647371d33cd75308c9e3df29785088b49bad5 (diff)
downloadgsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.tar
gsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.tar.gz
gsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.tar.bz2
gsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.tar.lz
gsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.tar.xz
gsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.tar.zst
gsoc2013-evolution-59dc75996549976ef319eeb52154bdafbd4ba05d.zip
include missing string.h, to avoid problems in 64 bit builds.
2004-08-31 Rodrigo Moya <rodrigo@novell.com> * gui/e-cal-model-tasks.c: include missing string.h, to avoid problems in 64 bit builds. svn path=/trunk/; revision=27111
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-cal-model-tasks.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index d88e755e4a..43909a5bd9 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2004-08-31 Rodrigo Moya <rodrigo@novell.com>
+
+ * gui/e-cal-model-tasks.c: include missing string.h, to avoid
+ problems in 64 bit builds.
+
2004-08-27 Not Zed <NotZed@Ximian.com>
* common/authentication.c (auth_func_cb): constify the strings to
diff --git a/calendar/gui/e-cal-model-tasks.c b/calendar/gui/e-cal-model-tasks.c
index 463f812c8f..1b1d30427c 100644
--- a/calendar/gui/e-cal-model-tasks.c
+++ b/calendar/gui/e-cal-model-tasks.c
@@ -21,6 +21,7 @@
#include <config.h>
#include <math.h>
+#include <string.h>
#include <gtk/gtkmessagedialog.h>
#include <libgnome/gnome-i18n.h>
#include <gal/util/e-util.h>