zink: fix warning text in missing feature macro

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15778>
This commit is contained in:
Mike Blumenkrantz 2022-04-06 14:31:26 -04:00 committed by Marge Bot
parent a489b1d936
commit da80beafb2
1 changed files with 2 additions and 2 deletions

View File

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