1
0
Fork 0
forked from len0rd/rockbox

Removed stray bad char

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@497 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-05-07 13:13:17 +00:00
parent 3af5a61230
commit 44b1a21f17

View file

@ -49,8 +49,8 @@ DIR* opendir(char* name)
} }
/* fixme: strtok() is not thread safe, and fat_getnext() calls yield() */ /* fixme: strtok() is not thread safe, and fat_getnext() calls yield() */
for ( part = strtok(name, "/"); part; for ( part = strtok(name, "/"); part;
part = strtok(NULL, "/") ) { part = strtok(NULL, "/")) {
int partlen = strlen(part); int partlen = strlen(part);
/* scan dir for name */ /* scan dir for name */
while (1) { while (1) {