From a3e63cf044a18593b8b1bc242c13b3e4a51f9888 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sun, 29 Jun 2008 07:29:14 +0000 Subject: very minor code police. also fix a possible but unlikely missed cpu_boost(false) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17867 a1c6a512-1295-4272-9138-f99709370657 --- apps/tagtree.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'apps/tagtree.c') diff --git a/apps/tagtree.c b/apps/tagtree.c index 711ca63941..ef4591fe04 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1581,7 +1581,12 @@ static bool insert_all_playlist(struct tree_context *c, int position, bool queue { if (playlist_remove_all_tracks(NULL) == 0) position = PLAYLIST_INSERT_LAST; - else return -1; } + else + { + cpu_boost(false); + return false; + } + } if (position == PLAYLIST_INSERT_FIRST) { -- cgit v1.2.3