提交 db6ac1f5 编写于 作者: O openharmony_ci 提交者: Gitee

!188 fix an inappropriate errno in FatFs.

Merge pull request !188 from JING/master
...@@ -93,10 +93,13 @@ int fatfs_2_vfs(int result) ...@@ -93,10 +93,13 @@ int fatfs_2_vfs(int result)
case FR_NO_FILE: case FR_NO_FILE:
case FR_NO_PATH: case FR_NO_PATH:
case FR_NO_FILESYSTEM:
status = ENOENT; status = ENOENT;
break; break;
case FR_NO_FILESYSTEM:
status = ENOTSUP;
break;
case FR_INVALID_NAME: case FR_INVALID_NAME:
status = EINVAL; status = EINVAL;
break; break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册