1
0
Fork 0
forked from len0rd/rockbox

Simplify some boolean expressions that compare directly against 'true'

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24144 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2010-01-02 16:03:30 +00:00
parent d03768bc14
commit 799a0a5cd4
7 changed files with 9 additions and 9 deletions

View file

@ -70,7 +70,7 @@ void traversedir(char* location, char* name)
if (dir) {
entry = rb->readdir(dir);
while (entry) {
if (abort == true)
if (abort)
break;
/* Skip .. and . */
if (entry->d_name[0] == '.')