Merge pull request #2560 from HubertXie/master

fix use rt_kprintf format bug
This commit is contained in:
Bernard Xiong 2019-04-09 21:39:59 +08:00 committed by GitHub
commit 7aa89a3c74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ int dfs_register(const struct dfs_filesystem_ops *ops)
if (empty == NULL) if (empty == NULL)
{ {
rt_set_errno(-ENOSPC); rt_set_errno(-ENOSPC);
LOG_E("There is no space to register this file system (%d).", ops->name); LOG_E("There is no space to register this file system (%s).", ops->name);
ret = -1; ret = -1;
} }
else if (ret == RT_EOK) else if (ret == RT_EOK)