diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2002-10-07 10:24:26 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2002-10-07 10:24:26 +0000 |
commit | 24ed9451bdd3450954e900c77a767ed3bcb17e72 (patch) | |
tree | 5a0b365762011eadd00b2c2e76fda16823db4187 /lib | |
parent | 27fc1b30dcd61555597363a4ab12e457e467d73c (diff) | |
download | libfuse-24ed9451bdd3450954e900c77a767ed3bcb17e72.tar.gz |
statfs header cleanup
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fuse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -800,7 +800,7 @@ static void do_statfs(struct fuse *f, struct fuse_in_header *in) res = -ENOSYS; if(f->op.statfs) - res = f->op.statfs(&arg.st); + res = f->op.statfs((struct fuse_statfs *) &arg.st); send_reply(f, in, res, &arg, sizeof(arg)); } |