diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-21 06:13:36 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-21 06:13:36 +0800 |
commit | e9a7215277ccb59d126cd0981d148744068ed148 (patch) | |
tree | 16ce2125e88d3cd92a10f7eded7c4ae958455a69 /calendar/gui/calendar.c | |
parent | 3acbe7a46f8c3af807ed56b997e2995e45a2fafe (diff) | |
download | gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.gz gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.bz2 gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.lz gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.xz gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.zst gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.zip |
Fix compiler warnings - Federico
svn path=/trunk/; revision=170
Diffstat (limited to 'calendar/gui/calendar.c')
-rw-r--r-- | calendar/gui/calendar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/gui/calendar.c b/calendar/gui/calendar.c index a32efae1e0..c9cc4fe984 100644 --- a/calendar/gui/calendar.c +++ b/calendar/gui/calendar.c @@ -14,6 +14,7 @@ #include <config.h> +#include "alarm.h" #include "calendar.h" #include "timeutil.h" #include "versit/vcc.h" @@ -64,7 +65,6 @@ add_alarm (iCalObject *obj, time_t start, time_t end, void *closure) void ical_object_try_alarms (iCalObject *obj) { - GList *alarms, *p; int ao, po, od, mo; int max_o; @@ -83,7 +83,6 @@ ical_object_try_alarms (iCalObject *obj) void calendar_add_alarms (Calendar *cal) { - time_t now = time (NULL); GList *events = cal->events; for (; events; events=events->next) |