# HG changeset patch # User zas_ # Date 1235854439 0 # Node ID acf1797b74c704057dbdcadfece771c952467761 # Parent 79937bc55f3a784d7bd27875e52ed44794d8dc32 Add missing space between while and first parenthesis. diff -r 79937bc55f3a -r acf1797b74c7 src/layout_util.c --- a/src/layout_util.c Sat Feb 28 20:52:51 2009 +0000 +++ b/src/layout_util.c Sat Feb 28 20:53:59 2009 +0000 @@ -1562,7 +1562,7 @@ return NULL; } - while(split[i]) + while (split[i]) { ret = g_list_prepend(ret, g_strdup(split[i])); i++; @@ -1646,7 +1646,7 @@ old_path = NULL; work = editors_list; - while(work) + while (work) { GList *path; EditorDescription *editor = work->data;