# HG changeset patch # User ib # Date 1354710490 0 # Node ID a3ca6d31b29f13ac2e1781cd21a089e0656bfcee # Parent a24abc593a88d2f37240c8bffcc1ea3687560b0f Cosmetic: Adjust indent. diff -r a24abc593a88 -r a3ca6d31b29f gui/interface.c --- a/gui/interface.c Wed Dec 05 12:26:32 2012 +0000 +++ b/gui/interface.c Wed Dec 05 12:28:10 2012 +0000 @@ -874,10 +874,10 @@ if (!enqueue) listMgr(PLAYLIST_DELETE, 0); // delete playlist before "appending" - while ((filename = pt_iter_get_next_file(pt_iter)) != NULL) - /* add it to end of list */ - if (add_to_gui_playlist(filename, PLAYLIST_ITEM_APPEND)) - added = True; + while ((filename = pt_iter_get_next_file(pt_iter)) != NULL) + /* add it to end of list */ + if (add_to_gui_playlist(filename, PLAYLIST_ITEM_APPEND)) + added = True; uiCurr(); // update filename guiInfo.PlaylistNext = True; @@ -899,10 +899,10 @@ curr = (plItem *)listMgr(PLAYLIST_ITEM_GET_CURR, 0); - while ((filename = pt_iter_get_next_file(pt_iter)) != NULL) - /* insert it into the list and set plCurrent=new item */ - if (add_to_gui_playlist(filename, PLAYLIST_ITEM_INSERT)) - added = True; + while ((filename = pt_iter_get_next_file(pt_iter)) != NULL) + /* insert it into the list and set plCurrent=new item */ + if (add_to_gui_playlist(filename, PLAYLIST_ITEM_INSERT)) + added = True; if (curr) listMgr(PLAYLIST_ITEM_SET_CURR, curr);