Explorar o código

Merge pull request #2560 from HubertXie/master

fix use rt_kprintf format bug
Bernard Xiong %!s(int64=6) %!d(string=hai) anos
pai
achega
7aa89a3c74
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      components/dfs/src/dfs_fs.c

+ 1 - 1
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)