From e956eedc2043c2636d7e4d6036362f761c1e4499 Mon Sep 17 00:00:00 2001 From: "goprife@gmail.com" Date: Tue, 23 Oct 2012 04:08:54 +0000 Subject: [PATCH] fill st_blksize of struct stat in dfs_def.h(this filed has nothing to do with jffs2) git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2369 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/dfs/filesystems/jffs2/dfs_jffs2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dfs/filesystems/jffs2/dfs_jffs2.c b/components/dfs/filesystems/jffs2/dfs_jffs2.c index f7999722ec..2bbfe972bd 100644 --- a/components/dfs/filesystems/jffs2/dfs_jffs2.c +++ b/components/dfs/filesystems/jffs2/dfs_jffs2.c @@ -684,7 +684,7 @@ static int dfs_jffs2_stat(struct dfs_filesystem* fs, const char *path, struct st st->st_dev = 0; st->st_size = s.st_size; st->st_mtime = s.st_mtime; - /*st->st_blksize = ;*/ //fixme: what's this field? + st->st_blksize = 1;//fixme: what's this field? return 0; } -- GitLab