qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] Re: [COMMIT 26d64a8] Format per CODING_STYLE


From: Kevin Wolf
Subject: [Qemu-devel] Re: [COMMIT 26d64a8] Format per CODING_STYLE
Date: Wed, 20 May 2009 09:44:48 +0200
User-agent: Thunderbird 2.0.0.21 (X11/20090320)

Anthony Liguori schrieb:
> From: malc <address@hidden>
> 
> Signed-off-by: malc <address@hidden>

Is it really necessary to have commits that change nothing but style? We
could have hundreds of commits just converting all the code to the new
coding style, but in the end all you achieve is to clutter up the log
and make git blame meaningless.

I would really prefer to apply the new coding style only to new or
(semantically) changed code.

Kevin

> 
> diff --git a/qemu-malloc.c b/qemu-malloc.c
> index 5e9f47f..295d185 100644
> --- a/qemu-malloc.c
> +++ b/qemu-malloc.c
> @@ -26,8 +26,9 @@
>  
>  static void *oom_check(void *ptr)
>  {
> -    if (ptr == NULL)
> +    if (ptr == NULL) {
>          abort();
> +    }
>      return ptr;
>  }
>  
> @@ -43,18 +44,20 @@ void qemu_free(void *ptr)
>  
>  void *qemu_malloc(size_t size)
>  {
> -    if (!size)
> +    if (!size) {
>          abort();
> +    }
>      return oom_check(malloc(size));
>  }
>  
>  void *qemu_realloc(void *ptr, size_t size)
>  {
> -    if (size)
> +    if (size) {
>          return oom_check(realloc(ptr, size));
> -    else {
> -        if (ptr)
> +    } else {
> +        if (ptr) {
>              return realloc(ptr, size);
> +        }
>      }
>      abort();
>  }
> @@ -81,8 +84,9 @@ char *qemu_strndup(const char *str, size_t size)
>      const char *end = memchr(str, 0, size);
>      char *new;
>  
> -    if (end)
> +    if (end) {
>          size = end - str;
> +    }
>  
>      new = qemu_malloc(size + 1);
>      new[size] = 0;
> 
> 





reply via email to

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