zink: use fprintf instead of printf to align the requirements warnings

This just seems to have been overlooked and nvk triggers it right now.

Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24527>
This commit is contained in:
Dave Airlie 2023-08-07 11:01:27 +10:00 committed by Marge Bot
parent 4f5bfc6691
commit 77773490cf

View file

@ -2423,7 +2423,7 @@ check_base_requirements(struct zink_screen *screen)
CHECK_OR_PRINT(feats.features.fillModeNonSolid);
CHECK_OR_PRINT(feats.features.shaderClipDistance);
if (!screen->info.feats12.scalarBlockLayout && !screen->info.have_EXT_scalar_block_layout)
printf("scalarBlockLayout OR EXT_scalar_block_layout ");
fprintf(stderr, "scalarBlockLayout OR EXT_scalar_block_layout ");
CHECK_OR_PRINT(have_KHR_maintenance1);
CHECK_OR_PRINT(have_EXT_custom_border_color);
CHECK_OR_PRINT(have_EXT_line_rasterization);