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:
parent
d03768bc14
commit
799a0a5cd4
7 changed files with 9 additions and 9 deletions
|
|
@ -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] == '.')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue