From ea314bf812b7c5151c13031dcd08f8517aa59d59 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tapani=20P=C3=A4lli?= Date: Tue, 29 Aug 2017 08:44:55 +0300 Subject: [PATCH] anv: remove extra 'debug:' from anv_debug_ignored_stype MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit anv_debug adds 'debug:' already, this is to clean following: debug: debug: anv_CreateDebugReportCallbackEXT: ignored VkStructureType 1000011000 Signed-off-by: Tapani Pälli Reviewed-by: Jason Ekstrand --- src/intel/vulkan/anv_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 1b48162..b42c76d 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -337,7 +337,7 @@ VkResult __vk_errorf(struct anv_instance *instance, const void *object, * defined by extensions supported by that component. */ #define anv_debug_ignored_stype(sType) \ - anv_debug("debug: %s: ignored VkStructureType %u\n", __func__, (sType)) + anv_debug("%s: ignored VkStructureType %u\n", __func__, (sType)) void __anv_finishme(const char *file, int line, const char *format, ...) anv_printflike(3, 4); -- 2.7.4