Pārlūkot izejas kodu

Update dfs_tmpfs.c (#8030)

蒙蒙plus 1 gadu atpakaļ
vecāks
revīzija
0391b81bb5
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      components/dfs/dfs_v1/filesystems/tmpfs/dfs_tmpfs.c

+ 1 - 1
components/dfs/dfs_v1/filesystems/tmpfs/dfs_tmpfs.c

@@ -485,7 +485,7 @@ int dfs_tmpfs_stat(struct dfs_filesystem *fs,
     if (d_file == NULL)
         return -ENOENT;
 
-    st->st_dev = (dev_t)dfs_filesystem_lookup(fs->path);
+    st->st_dev = (rt_device_t)dfs_filesystem_lookup(fs->path);
     st->st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH |
                   S_IWUSR | S_IWGRP | S_IWOTH;
     if (d_file->type == TMPFS_TYPE_DIR)