diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2002-10-28 08:49:39 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2002-10-28 08:49:39 +0000 |
commit | 6bf8b68e0ee6596e8b5f0e53656a078bc5e579ba (patch) | |
tree | 2b9febaa21ce38a144e0db088c86acb1677f2b56 /include | |
parent | 8b39a9f1b7517dac6b9b69daf200948fb96ca4cf (diff) | |
download | libfuse-6bf8b68e0ee6596e8b5f0e53656a078bc5e579ba.tar.gz |
Portability fix
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fuse.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index b6f41db..24905c4 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -119,7 +119,6 @@ struct fuse_getdir_out { struct fuse_mknod_in { unsigned short mode; unsigned short rdev; - char name[0]; }; struct fuse_mknod_out { @@ -129,17 +128,14 @@ struct fuse_mknod_out { struct fuse_mkdir_in { unsigned short mode; - char name[0]; }; struct fuse_rename_in { unsigned long newdir; - char names[0]; }; struct fuse_link_in { unsigned long newdir; - char name[0]; }; struct fuse_setattr_in { @@ -163,7 +159,6 @@ struct fuse_read_in { struct fuse_write_in { unsigned long long offset; unsigned int size; - char buf[0]; }; struct fuse_statfs_out { |