summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWanlong Gao <gaowanlong@cn.fujitsu.com>2012-01-30 14:36:05 +0800
committerRichard W.M. Jones <rjones@redhat.com>2012-01-30 11:26:28 +0000
commit56a677c32e222dacf23642c1f9d005a9fcd68b7a (patch)
tree962482d22e72f5f6bb2703cc539b318c924100a9
parentee51e422d779ad0641ea80e5aa8d82e62ff430bc (diff)
downloadlibguestfs-56a677c32e222dacf23642c1f9d005a9fcd68b7a.tar.gz
libguestfs-56a677c32e222dacf23642c1f9d005a9fcd68b7a.tar.xz
libguestfs-56a677c32e222dacf23642c1f9d005a9fcd68b7a.zip
guestmount: remove tailing spaces
just do a cleanup. remove the tailing spaces. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> (cherry picked from commit 0042898880167f93c5e64d76008ab07bd0aa9485)
-rw-r--r--fuse/guestmount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fuse/guestmount.c b/fuse/guestmount.c
index 66baf929..bd7ba504 100644
--- a/fuse/guestmount.c
+++ b/fuse/guestmount.c
@@ -582,7 +582,7 @@ static int
fg_open (const char *path, struct fuse_file_info *fi)
{
TRACE_CALL ("%s, 0%o", path, fi->flags);
-
+
int flags = fi->flags & 3;
if (read_only && flags != O_RDONLY)
@@ -596,7 +596,7 @@ fg_read (const char *path, char *buf, size_t size, off_t offset,
struct fuse_file_info *fi)
{
TRACE_CALL ("%s, %p, %zu, %ld", path, buf, size, (long) offset);
-
+
char *r;
size_t rsize;