diff options
author | Tapani Pälli <[email protected]> | 2017-08-29 08:44:55 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2017-09-12 09:42:19 +0300 |
commit | ea314bf812b7c5151c13031dcd08f8517aa59d59 (patch) | |
tree | a2559c71a78e20479e8f3711993c645eebddfb5c /src/intel/vulkan/anv_private.h | |
parent | a7ebb217449b1a4472d0e4232774bcbe69839e82 (diff) |
anv: remove extra 'debug:' from anv_debug_ignored_stype
anv_debug adds 'debug:' already, this is to clean following:
debug: debug: anv_CreateDebugReportCallbackEXT: ignored VkStructureType 1000011000
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 1b481621990..b42c76d8fe7 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); |