Make the delete_handler function return the actual result, instead of just 'false'.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24135 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mohamed Tarek 2010-01-01 21:23:17 +00:00
parent 839007872a
commit e35a15cf54

View file

@ -571,7 +571,7 @@ static bool delete_handler(bool is_dir)
if (!res) if (!res)
onplay_result = ONPLAY_RELOAD_DIR; onplay_result = ONPLAY_RELOAD_DIR;
return false; return ((res == 0) ? true:false);
} }