Browse Source

[components] change variable name

为什么提交这份PR (why to submit this PR)
#9397

你的解决方案是什么 (what is your solution)
将 line 758的dir改为link_dir
CYFS 7 months ago
parent
commit
b4d30064cc
1 changed files with 3 additions and 3 deletions
  1. 3 3
      components/finsh/msh.c

+ 3 - 3
components/finsh/msh.c

@@ -755,10 +755,10 @@ void msh_auto_complete_path(char *path)
                     }
                     else if (S_ISLNK(buffer.st_mode))
                     {
-                        DIR *dir = opendir(path);
-                        if (dir)
+                        DIR *link_dir = opendir(path);
+                        if (link_dir)
                         {
-                            closedir(dir);
+                            closedir(link_dir);
                             strcat(path, "/");
                         }
                     }