From: Erik Faye-Lund Date: Mon, 5 Aug 2019 15:29:22 +0000 (+0200) Subject: mesa: avoid warning on Windows X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1e21bb41233c4c4abe95f734f815a7e415ad7e19;p=mesa.git mesa: avoid warning on Windows On Windows, p_atomic_inc_return returns an unsigned long long rather than the type the pointer refers to, so let's make sure we cast the result to the right type. Otherwise, we'll trigger a warning about the wrong format-string for the type. Signed-off-by: Erik Faye-Lund Acked-by: Eric Engestrom --- diff --git a/src/gallium/auxiliary/util/u_helpers.c b/src/gallium/auxiliary/util/u_helpers.c index f28685f80d9..c9da90c775a 100644 --- a/src/gallium/auxiliary/util/u_helpers.c +++ b/src/gallium/auxiliary/util/u_helpers.c @@ -233,7 +233,7 @@ util_end_pipestat_query(struct pipe_context *ctx, struct pipe_query *q, " hs_invocations = %"PRIu64"\n" " ds_invocations = %"PRIu64"\n" " cs_invocations = %"PRIu64"\n", - p_atomic_inc_return(&counter), + (unsigned)p_atomic_inc_return(&counter), stats.ia_vertices, stats.ia_primitives, stats.vs_invocations,