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

@@ -34,7 +34,7 @@
*
*/
#include "calcurse.h"
#include "calcurse.h"
/*
* Initialize a list.
@@ -54,7 +54,7 @@ llist_free (llist_t *l)
llist_item_t *i, *t;
for (i = l->head; i; i = t)
{
{
t = i->next;
mem_free (i);
}