We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf096e commit 9aaedb1Copy full SHA for 9aaedb1
1 file changed
components/dfs/dfs_v1/src/dfs_file.c
@@ -830,11 +830,11 @@ void ls(const char *pathname)
830
rt_kprintf("%-20s", dirent.d_name);
831
if (S_ISDIR(stat.st_mode))
832
{
833
- rt_kprintf("%-25s\n", "<DIR>");
+ rt_kprintf(" %-25s\n", "<DIR>");
834
}
835
else
836
837
- rt_kprintf("%-25lu\n", (unsigned long)stat.st_size);
+ rt_kprintf(" %-25lu\n", (unsigned long)stat.st_size);
838
839
840
0 commit comments