Re: [Mesa-dev] [PATCH] graw: Silence printf format warnings in 32-bit builds.

2012-02-27 Thread Paul Berry
On 25 February 2012 14:03, Vinson Lee wrote: > Fixes these GCC warnings. > occlusion-query.c: In function ‘draw’: > occlusion-query.c:189: warning: format ‘%lu’ expects type ‘long unsigned > int’, but argument 2 has type ‘uint64_t’ > occlusion-query.c:189: warning: format ‘%lu’ expects type ‘long

[Mesa-dev] [PATCH] graw: Silence printf format warnings in 32-bit builds.

2012-02-25 Thread Vinson Lee
Fixes these GCC warnings. occlusion-query.c: In function ‘draw’: occlusion-query.c:189: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 2 has type ‘uint64_t’ occlusion-query.c:189: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 3 has type ‘uint64_t’ occlus