From 25cdd8bba95499656594a1d3dfd42fd014df1f9f Mon Sep 17 00:00:00 2001 From: HubretXie Date: Tue, 9 Apr 2019 20:11:07 +0800 Subject: [PATCH] fix use printf format bug fix use printf format bug --- components/dfs/src/dfs_fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dfs/src/dfs_fs.c b/components/dfs/src/dfs_fs.c index 774d008ce6..0f69ad2e3e 100644 --- a/components/dfs/src/dfs_fs.c +++ b/components/dfs/src/dfs_fs.c @@ -55,7 +55,7 @@ int dfs_register(const struct dfs_filesystem_ops *ops) if (empty == NULL) { 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; } else if (ret == RT_EOK) -- GitLab