diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-08 17:32:25 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-08 17:32:25 +0000 |
commit | d507c73e8fda72305b3e172ac7686c05d2dd73da (patch) | |
tree | 877c6bbe1c1c01b695bfb46b8c026996b531ee9c /example/hello.c | |
parent | 8fb48feb5024d2aa9083690e472f1b1072cb8169 (diff) | |
download | libfuse-d507c73e8fda72305b3e172ac7686c05d2dd73da.tar.gz |
fix
Diffstat (limited to 'example/hello.c')
-rw-r--r-- | example/hello.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/hello.c b/example/hello.c index 37020b2..5065fb7 100644 --- a/example/hello.c +++ b/example/hello.c @@ -35,7 +35,7 @@ static int hello_getattr(const char *path, struct stat *stbuf) return res; } -static int hello_getdir(const char *path, fuse_dirh_t h, fuse_dirfil2_t filler) +static int hello_getdir(const char *path, fuse_dirh_t h, fuse_dirfil_t filler) { if(strcmp(path, "/") != 0) return -ENOENT; |