From ecce1bf2ff73eb37048a784df0fa97ad041c6bdd Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Thu, 25 Aug 2005 15:19:06 +0000 Subject: fix --- example/hello_ll.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'example/hello_ll.c') diff --git a/example/hello_ll.c b/example/hello_ll.c index f5a2baf..882f2cd 100644 --- a/example/hello_ll.c +++ b/example/hello_ll.c @@ -40,10 +40,13 @@ static int hello_stat(fuse_ino_t ino, struct stat *stbuf) return 0; } -static void hello_ll_getattr(fuse_req_t req, fuse_ino_t ino) +static void hello_ll_getattr(fuse_req_t req, fuse_ino_t ino, + struct fuse_file_info *fi) { struct stat stbuf; + (void) fi; + memset(&stbuf, 0, sizeof(stbuf)); if (hello_stat(ino, &stbuf) == -1) fuse_reply_err(req, ENOENT); -- cgit v1.2.3