Add missing space between while and first parenthesis.
authorLaurent Monin <geeqie@norz.org>
Sat, 28 Feb 2009 20:53:59 +0000 (20:53 +0000)
committerLaurent Monin <geeqie@norz.org>
Sat, 28 Feb 2009 20:53:59 +0000 (20:53 +0000)
src/layout_util.c

index 7cd5916..fa163a5 100644 (file)
@@ -1562,7 +1562,7 @@ static GList *layout_actions_editor_menu_path(EditorDescription *editor)
                return NULL;
                }
        
-       while(split[i])
+       while (split[i])
                {
                ret = g_list_prepend(ret, g_strdup(split[i]));
                i++;
@@ -1646,7 +1646,7 @@ static void layout_actions_setup_editors(LayoutWindow *lw)
        
        old_path = NULL;
        work = editors_list;
-       while(work)
+       while (work)
                {
                GList *path;
                EditorDescription *editor = work->data;