From 0e512856f32e757c3e974957efd5b7327951bb0a Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Wed, 22 Feb 2017 00:14:49 -0500 Subject: [PATCH] wmcalendar: Fix capitalization in type name. --- wmcalendar/Src/calendar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmcalendar/Src/calendar.c b/wmcalendar/Src/calendar.c index 77e39df..ffadf03 100644 --- a/wmcalendar/Src/calendar.c +++ b/wmcalendar/Src/calendar.c @@ -313,9 +313,9 @@ int dayevents(struct icaltimetype dt, GtkWidget *table){ -----------------------------------------------------*/ void deleteCalObjs(){ int i; - struct calObj* help; + struct calobj* help; while(calRoot){ - help = (struct calObj*) calRoot->next; + help = (struct calobj*) calRoot->next; free(calRoot->text); free(calRoot->comp); free(calRoot);