]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Fix indentation 5156/head
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Mon, 6 Jul 2015 18:14:08 +0000 (20:14 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Mon, 6 Jul 2015 18:15:06 +0000 (20:15 +0200)
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
src/client/Client.cc

index 4e70756d4c062c694dd61df35345e82ede7cd404..333c10f76ec77da83c926c8f12c90e4d0ea62ba5 100644 (file)
@@ -7133,7 +7133,7 @@ int Client::preadv(int fd, const struct iovec *iov, int iovcnt, loff_t offset)
 {
   if (iovcnt < 0)
     return EINVAL;
-     return _preadv_pwritev(fd, iov, iovcnt, offset, false);
+  return _preadv_pwritev(fd, iov, iovcnt, offset, false);
 }
 
 int Client::_read(Fh *f, int64_t offset, uint64_t size, bufferlist *bl)
@@ -7462,7 +7462,7 @@ int Client::pwritev(int fd, const struct iovec *iov, int iovcnt, int64_t offset)
 {
   if (iovcnt < 0)
     return EINVAL;
-    return _preadv_pwritev(fd, iov, iovcnt, offset, true); 
+  return _preadv_pwritev(fd, iov, iovcnt, offset, true);
 }
 
 int Client::_preadv_pwritev(int fd, const struct iovec *iov, unsigned iovcnt, int64_t offset, bool write)