qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] cache-utils: Add missing include file for uintp


From: Blue Swirl
Subject: Re: [Qemu-devel] [PATCH] cache-utils: Add missing include file for uintptr_t
Date: Sun, 11 Mar 2012 16:08:47 +0000

Thanks, applied.

On Mon, Mar 5, 2012 at 20:15, Stefan Weil <address@hidden> wrote:
> Commit 021ecd8b9db37927059f5d3234b51ed766706437 breaks the build for
> PPC hosts because it uses uintptr_t without the necessary include file.
>
> uintptr_t is defined in stdint.h, so add this include.
>
> Cc: Alexander Graf <address@hidden>
> Signed-off-by: Stefan Weil <address@hidden>
> ---
>
> Hi Alex,
>
> could you please test whether my patch fixes the build problem?
>
> Thanks,
> Stefan
>
>
>  cache-utils.h |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/cache-utils.h b/cache-utils.h
> index 04a6e2e..2c57f78 100644
> --- a/cache-utils.h
> +++ b/cache-utils.h
> @@ -2,6 +2,9 @@
>  #define QEMU_CACHE_UTILS_H
>
>  #if defined(_ARCH_PPC)
> +
> +#include <stdint.h> /* uintptr_t */
> +
>  struct qemu_cache_conf {
>     unsigned long dcache_bsize;
>     unsigned long icache_bsize;
> --
> 1.7.9
>



reply via email to

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