Преглед на файлове

[components] change variable name

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

你的解决方案是什么 (what is your solution)
将 line 758的dir改为link_dir
CYFS преди 7 месеца
родител
ревизия
b4d30064cc
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  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, "/");
                         }
                     }