diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2007-12-12 14:25:40 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2007-12-12 14:25:40 +0000 |
commit | cdb8b79bad5fea81b74931a9027f1d5ca344af8e (patch) | |
tree | 11ab550f265dc3eb546b7c26f3745e6d139b1fcc /include/fuse_common_compat.h | |
parent | 918f0ad95b73e506d20488cb8ddd35d1a2524c7c (diff) | |
download | libfuse-cdb8b79bad5fea81b74931a9027f1d5ca344af8e.tar.gz |
change indenting
Diffstat (limited to 'include/fuse_common_compat.h')
-rw-r--r-- | include/fuse_common_compat.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/include/fuse_common_compat.h b/include/fuse_common_compat.h index 0383ed7..34440ff 100644 --- a/include/fuse_common_compat.h +++ b/include/fuse_common_compat.h @@ -1,20 +1,20 @@ /* - FUSE: Filesystem in Userspace - Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> + FUSE: Filesystem in Userspace + Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> - This program can be distributed under the terms of the GNU LGPLv2. - See the file COPYING.LIB. + This program can be distributed under the terms of the GNU LGPLv2. + See the file COPYING.LIB. */ /* these definitions provide source compatibility to prior versions. Do not include this file directly! */ struct fuse_file_info_compat { - int flags; - unsigned long fh; - int writepage; - unsigned int direct_io : 1; - unsigned int keep_cache : 1; + int flags; + unsigned long fh; + int writepage; + unsigned int direct_io : 1; + unsigned int keep_cache : 1; }; int fuse_mount_compat25(const char *mountpoint, struct fuse_args *args); @@ -24,4 +24,3 @@ int fuse_mount_compat22(const char *mountpoint, const char *opts); int fuse_mount_compat1(const char *mountpoint, const char *args[]); void fuse_unmount_compat22(const char *mountpoint); - |