diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-06-09 21:36:37 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-06-09 21:37:22 +0200 |
commit | b2645847a0b1bdd585a119504333e78e7c0ce02c (patch) | |
tree | 1f7564157376d1ab8798bbe0c59d93f263dc08dc /src/llist.c | |
parent | 4e6e3a9c973c36db5bf10e8f0b645f9de708845f (diff) | |
download | calcurse-b2645847a0b1bdd585a119504333e78e7c0ce02c.zip |
Fix whitespace issues
Strip trailing whitespaces in all source files.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/llist.c')
-rw-r--r-- | src/llist.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |