From 6f883c0f3f4c08fe8e125f269da9b940519ccf44 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 14 Apr 2011 11:28:22 +0200 Subject: Use generic lists for events. Use the new generic list implementation instead of those insane "next" pointers in events. Includes some cleanups. Signed-off-by: Lukas Fleischer --- src/calcurse.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/calcurse.c') diff --git a/src/calcurse.c b/src/calcurse.c index 6a90f57..95c9de8 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -75,6 +75,9 @@ main (int argc, char **argv) apoint_llist_init (); recur_apoint_llist_init (); + /* Initialize non-thread-safe data structures. */ + event_llist_init (); + /* * Begin by parsing and handling command line arguments. * The data path is also initialized here. -- cgit v1.2.3-54-g00ecf