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() */
for ( part = strtok(name, "/"); part;
part = strtok(NULL, "/") ) {
for ( part = strtok(name, "/"); part;
part = strtok(NULL, "/")) {
int partlen = strlen(part);
/* scan dir for name */
while (1) {