aboutsummaryrefslogtreecommitdiffstats
path: root/example/null.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-02-02 11:14:04 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-02-02 11:14:04 +0000
commite5183747da2b268f53a9464fda5fd6b4856c62a4 (patch)
tree7c20708b5d28200464b31860da8f54eb2b989759 /example/null.c
parentff30a6cd43535ec318a26c1d3ec9c7edc268e9c9 (diff)
downloadlibfuse-e5183747da2b268f53a9464fda5fd6b4856c62a4.tar.gz
whitespace fixes
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();