Fix whitespace issues

Strip trailing whitespaces in all source files.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2011-06-09 21:36:37 +02:00
parent 4e6e3a9c97
commit b2645847a0
5 changed files with 17 additions and 17 deletions

View File

@@ -105,7 +105,7 @@ event_new (char *mesg, char *note, long day, int id)
ev->day = day;
ev->id = id;
ev->note = (note != NULL) ? mem_strdup (note) : NULL;
LLIST_ADD_SORTED (&eventlist, ev, event_cmp_day);
return ev;