qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2] modules: Fix building with --enable-modules


From: Hu Tao
Subject: Re: [Qemu-devel] [PATCH v2] modules: Fix building with --enable-modules
Date: Thu, 27 Feb 2014 10:58:38 +0800
User-agent: Mutt/1.5.21 (2010-09-15)

On Thu, Feb 27, 2014 at 06:31:33AM +0800, Fam Zheng wrote:
> Compiling util/modules.c with modules enabled fails now.
> 
> Fix it by including qemu-common.h before #ifdef testing in module.c.
> 
> Signed-off-by: Fam Zheng <address@hidden>
> ---
>  util/module.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/util/module.c b/util/module.c
> index dc08c16..863a8a3 100644
> --- a/util/module.c
> +++ b/util/module.c
> @@ -14,10 +14,10 @@
>   */
>  
>  #include <stdlib.h>
> +#include "qemu-common.h"
>  #ifdef CONFIG_MODULES
>  #include <gmodule.h>
>  #endif
> -#include "qemu-common.h"
>  #include "qemu/queue.h"
>  #include "qemu/module.h"
>  
> -- 
> 1.9.0

Reviewed-by: Hu Tao <address@hidden>



reply via email to

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