Browse Source

Merge pull request #1671 from RT-Thread/fix_mkfs

[DFS] fix the mkfs issue for multi-mounted fatfs
Bernard Xiong 6 years ago
parent
commit
2b09a02084
1 changed files with 4 additions and 0 deletions
  1. 4 0
      components/dfs/filesystems/elmfat/dfs_elm.c

+ 4 - 0
components/dfs/filesystems/elmfat/dfs_elm.c

@@ -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 */