Mercurial > geeqie.yaz
changeset 1348:acf1797b74c7
Add missing space between while and first parenthesis.
author | zas_ |
---|---|
date | Sat, 28 Feb 2009 20:53:59 +0000 |
parents | 79937bc55f3a |
children | 5f21db044ec4 |
files | src/layout_util.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;