From 6b6cecac2f68031201b9a375006f1ba4091f5da3 Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Sun, 3 Jul 2011 23:16:59 +0000 Subject: [PATCH] fix compiling error. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1591 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- examples/file/listdir.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/file/listdir.c b/examples/file/listdir.c index 76cf2f2e26..c2065e4013 100644 --- a/examples/file/listdir.c +++ b/examples/file/listdir.c @@ -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); -- GitLab