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:
parent
3af5a61230
commit
44b1a21f17
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue