Compiler problem fixed (thanks Petr for reporting it).

This commit is contained in:
Frederic Culot 2010-03-01 18:55:44 +00:00
parent 23ac473468
commit 2ec8ab17ac
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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. */