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 <erik.faye-lund@collabora.com>
Acked-by: Eric Engestrom <eric@engestrom.ch>
This commit is contained in:
Erik Faye-Lund 2019-08-05 17:29:22 +02:00
parent e0a740c633
commit 1e21bb4123
1 changed files with 1 additions and 1 deletions

View File

@ -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,