From da80beafb2d87beb8d9865ec1c27d7e7f5113f80 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 6 Apr 2022 14:31:26 -0400 Subject: [PATCH] zink: fix warning text in missing feature macro Reviewed-by: Dave Airlie Part-of: --- src/gallium/drivers/zink/zink_screen.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/zink/zink_screen.h b/src/gallium/drivers/zink/zink_screen.h index 7bb240d4eef..40fb5b93f72 100644 --- a/src/gallium/drivers/zink/zink_screen.h +++ b/src/gallium/drivers/zink/zink_screen.h @@ -285,9 +285,9 @@ zink_stub_function_not_loaded(void); #define warn_missing_feature(warned, feat) \ do { \ if (!warned) { \ - mesa_logw("WARNING: Incorrect rendering will happen, " \ + mesa_logw("WARNING: Incorrect rendering will happen " \ "because the Vulkan device doesn't support " \ - "the %s feature\n", feat); \ + "the '%s' feature\n", feat); \ warned = true; \ } \ } while (0)