fix compiling error.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1591 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com 2011-07-03 23:16:59 +00:00
parent 82e62b69ce
commit 6b6cecac2f
1 changed files with 3 additions and 3 deletions

View File

@ -22,14 +22,14 @@ void list_dir(const char* path)
dir = opendir(path);
if (dir != RT_NULL)
{
struct dfs_dirent* dirent;
struct dfs_stat s;
struct dirent* dirent;
struct stat s;
do
{
dirent = readdir(dir);
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 */
rt_sprintf(fullpath, "/%s", dirent->d_name);