diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-02-02 11:14:04 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-02-02 11:14:04 +0000 |
commit | e5183747da2b268f53a9464fda5fd6b4856c62a4 (patch) | |
tree | 7c20708b5d28200464b31860da8f54eb2b989759 /example/null.c | |
parent | ff30a6cd43535ec318a26c1d3ec9c7edc268e9c9 (diff) | |
download | libfuse-e5183747da2b268f53a9464fda5fd6b4856c62a4.tar.gz |
whitespace fixes
Diffstat (limited to 'example/null.c')
-rw-r--r-- | example/null.c | 2 |
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(); |