Merge pull request #1671 from RT-Thread/fix_mkfs
[DFS] fix the mkfs issue for multi-mounted fatfs
This commit is contained in:
commit
2b09a02084
|
@ -269,6 +269,10 @@ int dfs_elm_mkfs(rt_device_t dev_id)
|
|||
f_mount(fat, logic_nbr, (BYTE)index);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
logic_nbr[0] = '0' + index;
|
||||
}
|
||||
|
||||
/* [IN] Logical drive number */
|
||||
/* [IN] Format options */
|
||||
|
|
Loading…
Reference in New Issue