aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2010-03-01 18:55:44 +0000
committerFrederic Culot <calcurse@culot.org>2010-03-01 18:55:44 +0000
commit2ec8ab17accd8c34c180ccea34b9242f6b171d44 (patch)
tree0c81cf61602313aa62c1c0bf0ba4656991c6aff8
parent23ac47346829442550a8ba5f23476f775b257fd6 (diff)
downloadcalcurse-2ec8ab17accd8c34c180ccea34b9242f6b171d44.tar.gz
calcurse-2ec8ab17accd8c34c180ccea34b9242f6b171d44.zip
Compiler problem fixed (thanks Petr for reporting it).
-rwxr-xr-xChangeLog5
-rwxr-xr-xsrc/calendar.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c2cdda7..55124ca 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-03-01 Frederic Culot <frederic@culot.org>
+
+ * src/calendar.c (calendar_date_thread): avoid compilation
+ problems (thanks Petr for reporting this)
+
2010-02-14 Frederic Culot <frederic@culot.org>
* src/notify.c (notify_update_bar): avoid a possible segfault when
diff --git a/src/calendar.c b/src/calendar.c
index 84dd207..2c6c781 100755
--- a/src/calendar.c
+++ b/src/calendar.c
@@ -1,4 +1,4 @@
-/* $calcurse: calendar.c,v 1.30 2009/10/28 15:15:43 culot Exp $ */
+/* $calcurse: calendar.c,v 1.31 2010/03/01 18:55:45 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -130,6 +130,8 @@ calendar_date_thread (void *arg)
calendar_set_current_date ();
calendar_update_panel (&win[CAL]);
}
+
+ return (void *)0;
}
/* Launch the calendar date thread. */