radv: fix printing with RADV_DEBUG=psocachestats

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32254>
This commit is contained in:
Samuel Pitoiset 2024-11-20 11:12:50 +01:00 committed by Marge Bot
parent 6c967c9bbe
commit ba77b2d65d

View file

@ -317,7 +317,7 @@ radv_report_pso_cache_stats(struct radv_device *device, const struct radv_pipeli
fprintf(
stderr,
"radv: PSO cache stats: gfx (hits=%d, misses=%d), gfx_lib (hits=%d, misses=%d), compute (hits=%d, misses=%d), rt "
"(hits=%d, misses=%d)\nt",
"(hits=%d, misses=%d)\n",
device->pso_cache_stats[RADV_PIPELINE_GRAPHICS].hits, device->pso_cache_stats[RADV_PIPELINE_GRAPHICS].misses,
device->pso_cache_stats[RADV_PIPELINE_GRAPHICS_LIB].hits,
device->pso_cache_stats[RADV_PIPELINE_GRAPHICS_LIB].misses, device->pso_cache_stats[RADV_PIPELINE_COMPUTE].hits,