1
0
Fork 0
forked from len0rd/rockbox

Don't throw away return code.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4730 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2004-06-10 15:10:13 +00:00
parent 8eca851145
commit 2ecddadc00

View file

@ -126,7 +126,8 @@ static void usb_slave_mode(bool on)
panicf("disk: NULL");
for ( i=0; i<4; i++ ) {
if (!fat_mount(pinfo[i].start))
rc = fat_mount(pinfo[i].start);
if (!rc)
break;
}
if (i==4)