aboutsummaryrefslogtreecommitdiffstats
path: root/example/fusexmp.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2004-01-13 15:33:12 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2004-01-13 15:33:12 +0000
commite8663f383b9b965ea5f8b510db8eae2e918b8794 (patch)
tree60492c725cd593918892de0e2cba85e55ba8cefb /example/fusexmp.c
parent4b7abe36884cfec9870ddd81c0a3fcfd04234cdd (diff)
downloadlibfuse-e8663f383b9b965ea5f8b510db8eae2e918b8794.tar.gz
code cleanup
Diffstat (limited to 'example/fusexmp.c')
-rw-r--r--example/fusexmp.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/example/fusexmp.c b/example/fusexmp.c
index 0926ff8..7af6c04 100644
--- a/example/fusexmp.c
+++ b/example/fusexmp.c
@@ -269,26 +269,26 @@ static int xmp_fsync(const char *path, int isdatasync)
}
static struct fuse_operations xmp_oper = {
- getattr: xmp_getattr,
- readlink: xmp_readlink,
- getdir: xmp_getdir,
- mknod: xmp_mknod,
- mkdir: xmp_mkdir,
- symlink: xmp_symlink,
- unlink: xmp_unlink,
- rmdir: xmp_rmdir,
- rename: xmp_rename,
- link: xmp_link,
- chmod: xmp_chmod,
- chown: xmp_chown,
- truncate: xmp_truncate,
- utime: xmp_utime,
- open: xmp_open,
- read: xmp_read,
- write: xmp_write,
- statfs: xmp_statfs,
- release: xmp_release,
- fsync: xmp_fsync
+ .getattr = xmp_getattr,
+ .readlink = xmp_readlink,
+ .getdir = xmp_getdir,
+ .mknod = xmp_mknod,
+ .mkdir = xmp_mkdir,
+ .symlink = xmp_symlink,
+ .unlink = xmp_unlink,
+ .rmdir = xmp_rmdir,
+ .rename = xmp_rename,
+ .link = xmp_link,
+ .chmod = xmp_chmod,
+ .chown = xmp_chown,
+ .truncate = xmp_truncate,
+ .utime = xmp_utime,
+ .open = xmp_open,
+ .read = xmp_read,
+ .write = xmp_write,
+ .statfs = xmp_statfs,
+ .release = xmp_release,
+ .fsync = xmp_fsync
};