From 848318f95f54b78946a2c224c2c474ec324d11c2 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sun, 18 Nov 2012 14:47:37 +0400 Subject: [PATCH] lib/vfs/vfs.h: indentation. Signed-off-by: Andrew Borodin --- lib/vfs/vfs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/vfs/vfs.h b/lib/vfs/vfs.h index 82f72cf06..84f1ccf22 100644 --- a/lib/vfs/vfs.h +++ b/lib/vfs/vfs.h @@ -154,8 +154,8 @@ typedef struct vfs_class void *(*open) (const vfs_path_t * vpath, int flags, mode_t mode); int (*close) (void *vfs_info); - ssize_t (*read) (void *vfs_info, char *buffer, size_t count); - ssize_t (*write) (void *vfs_info, const char *buf, size_t count); + ssize_t (*read) (void *vfs_info, char *buffer, size_t count); + ssize_t (*write) (void *vfs_info, const char *buf, size_t count); void *(*opendir) (const vfs_path_t * vpath); void *(*readdir) (void *vfs_info); @@ -176,10 +176,10 @@ typedef struct vfs_class int (*rename) (const vfs_path_t * vpath1, const vfs_path_t * vpath2); int (*chdir) (const vfs_path_t * vpath); int (*ferrno) (struct vfs_class * me); - off_t (*lseek) (void *vfs_info, off_t offset, int whence); + off_t (*lseek) (void *vfs_info, off_t offset, int whence); int (*mknod) (const vfs_path_t * vpath, mode_t mode, dev_t dev); - vfsid (*getid) (const vfs_path_t * vpath); + vfsid (*getid) (const vfs_path_t * vpath); int (*nothingisopen) (vfsid id); void (*free) (vfsid id); -- 2.11.4.GIT