From b2645847a0b1bdd585a119504333e78e7c0ce02c Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 9 Jun 2011 21:36:37 +0200 Subject: Fix whitespace issues Strip trailing whitespaces in all source files. Signed-off-by: Lukas Fleischer --- src/llist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/llist.c') diff --git a/src/llist.c b/src/llist.c index 9a379c6..b1c2df7 100644 --- a/src/llist.c +++ b/src/llist.c @@ -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); } -- cgit v1.2.3-54-g00ecf