fix compiling error.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1591 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
82e62b69ce
commit
6b6cecac2f
|
@ -22,14 +22,14 @@ void list_dir(const char* path)
|
||||||
dir = opendir(path);
|
dir = opendir(path);
|
||||||
if (dir != RT_NULL)
|
if (dir != RT_NULL)
|
||||||
{
|
{
|
||||||
struct dfs_dirent* dirent;
|
struct dirent* dirent;
|
||||||
struct dfs_stat s;
|
struct stat s;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
dirent = readdir(dir);
|
dirent = readdir(dir);
|
||||||
if (dirent == RT_NULL) break;
|
if (dirent == RT_NULL) break;
|
||||||
rt_memset(&s, 0, sizeof(struct dfs_stat));
|
rt_memset(&s, 0, sizeof(struct stat));
|
||||||
|
|
||||||
/* build full path for each file */
|
/* build full path for each file */
|
||||||
rt_sprintf(fullpath, "/%s", dirent->d_name);
|
rt_sprintf(fullpath, "/%s", dirent->d_name);
|
||||||
|
|
Loading…
Reference in New Issue