diff options
author | Tapani Pälli <[email protected]> | 2017-09-12 13:09:37 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2017-09-12 13:29:11 +0300 |
commit | f940b1665a7f17ad2ae7ae2e951d90d151482875 (patch) | |
tree | d6b7cbcad45198fb9ad8c495d3fc6f410c027005 /src/intel | |
parent | 51bf007d2c27fbad6dac590c72f0fc4860e3fa02 (diff) |
anv: fix build issues on release build
Fixes: d083bc1c4b ("anv: wire up vk_errorf macro to do debug reporting")
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/intel')
-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 b42c76d8fe7..df8de8d9407 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -317,7 +317,7 @@ VkResult __vk_errorf(struct anv_instance *instance, const void *object, #define anv_debug(format, ...) fprintf(stderr, "debug: " format, ##__VA_ARGS__) #else #define vk_error(error) error -#define vk_errorf(error, format, ...) error +#define vk_errorf(instance, obj, error, format, ...) error #define anv_debug(format, ...) #endif |