aboutsummaryrefslogtreecommitdiffstats
path: root/example/null.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/null.c')
-rw-r--r--example/null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/null.c b/example/null.c
index c4e505b..d58feab 100644
--- a/example/null.c
+++ b/example/null.c
@@ -18,7 +18,7 @@ static int null_getattr(const char *path, struct stat *stbuf)
{
if(strcmp(path, "/") != 0)
return -ENOENT;
-
+
stbuf->st_mode = S_IFREG | 0644;
stbuf->st_nlink = 1;
stbuf->st_uid = getuid();