uncrustify source code

This commit is contained in:
neingeist 2014-04-19 18:23:49 +02:00
parent ca15f19709
commit 8141a18cab
14 changed files with 1610 additions and 27 deletions

View file

@ -254,7 +254,7 @@ int main(void) {
assert(list_elementat(foolist, list_length(foolist)+2) == NULL);
/* Free up remaining items and the list. */
while(!list_empty(foolist)) {
while (!list_empty(foolist)) {
list_node_t *el = list_elementat(foolist, 0);
free(list_remove(foolist, el));
}