diff options
author | Denis V. Lunev <den@openvz.org> | 2014-07-28 20:23:53 +0400 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-08-15 18:03:13 +0100 |
commit | f08e2f8465197c65c61b1ab1e0df3cdef4d8567c (patch) | |
tree | 938c89c8d3bdf90d902fed3c279fe8f958d66482 | |
parent | 8c27d54fa0a289809dc0c62d8c1f44d5bab2b3bb (diff) |
parallels: replace tabs with spaces in block/parallels.c
Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Jeff Cody <jcody@redhat.com>
CC: Kevin Wolf <kwolf@redhat.com>
CC: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r-- | block/parallels.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/block/parallels.c b/block/parallels.c index 59cfad6a63..e0cf1d991f 100644 --- a/block/parallels.c +++ b/block/parallels.c @@ -61,11 +61,11 @@ static int parallels_probe(const uint8_t *buf, int buf_size, const char *filenam const struct parallels_header *ph = (const void *)buf; if (buf_size < HEADER_SIZE) - return 0; + return 0; if (!memcmp(ph->magic, HEADER_MAGIC, 16) && - (le32_to_cpu(ph->version) == HEADER_VERSION)) - return 100; + (le32_to_cpu(ph->version) == HEADER_VERSION)) + return 100; return 0; } @@ -119,7 +119,7 @@ static int parallels_open(BlockDriverState *bs, QDict *options, int flags, } for (i = 0; i < s->catalog_size; i++) - le32_to_cpus(&s->catalog_bitmap[i]); + le32_to_cpus(&s->catalog_bitmap[i]); qemu_co_mutex_init(&s->lock); return 0; @@ -139,7 +139,7 @@ static int64_t seek_to_sector(BlockDriverState *bs, int64_t sector_num) /* not allocated */ if ((index > s->catalog_size) || (s->catalog_bitmap[index] == 0)) - return -1; + return -1; return (uint64_t)(s->catalog_bitmap[index] + offset) * 512; } |