qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/4] block/parallels: replace tabs with spaces i


From: Jeff Cody
Subject: Re: [Qemu-devel] [PATCH 2/4] block/parallels: replace tabs with spaces in block/parallels.c
Date: Thu, 24 Jul 2014 14:36:19 -0400
User-agent: Mutt/1.5.21 (2010-09-15)

On Tue, Jul 22, 2014 at 05:19:35PM +0400, Denis V. Lunev wrote:
> Signed-off-by: Denis V. Lunev <address@hidden>
> CC: Kevin Wolf <address@hidden>
> CC: Stefan Hajnoczi <address@hidden>
> ---
>  block/parallels.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/block/parallels.c b/block/parallels.c
> index c44df87..8f9ec8a 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;
>  }
> @@ -115,7 +115,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;
> @@ -135,7 +135,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;
>  }
>  
> -- 
> 1.9.1
> 
>

Reviewed-by: Jeff Cody <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]