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

2012-03-11 Thread Blue Swirl
Thanks, applied. On Mon, Mar 5, 2012 at 20:15, Stefan Weil 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 > S

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

2012-03-06 Thread Alexander Graf
On 05.03.2012, at 21:15, Stefan Weil 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 > Signed-off-by: Stefan

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

2012-03-05 Thread Stefan Weil
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 Signed-off-by: Stefan Weil --- Hi Alex, could you please test whether my patch