radv: remove duplicate brackets in version string
authorEric Engestrom <eric.engestrom@intel.com>
Thu, 25 Oct 2018 16:36:30 +0000 (17:36 +0100)
committerEric Engestrom <eric.engestrom@intel.com>
Fri, 26 Oct 2018 17:33:11 +0000 (18:33 +0100)
MESA_GIT_SHA1 resolves to either an empty "" string if not build from git,
or " (git-DEADBEEF)" if it is. No need to wrap it in additional "()".

Fixes: 9d40ec2cf6ec6d3d9d78 "radv: Add support for VK_KHR_driver_properties."
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
src/amd/vulkan/radv_device.c

index b2798c4..1c6be30 100644 (file)
@@ -1200,7 +1200,7 @@ void radv_GetPhysicalDeviceProperties2(
 
                        memset(driver_props->driverInfo, 0, VK_MAX_DRIVER_INFO_SIZE_KHR);
                        snprintf(driver_props->driverInfo, VK_MAX_DRIVER_INFO_SIZE_KHR,
-                               "Mesa " PACKAGE_VERSION " (" MESA_GIT_SHA1 ")"
+                               "Mesa " PACKAGE_VERSION MESA_GIT_SHA1
                                " (LLVM %d.%d.%d)",
                                 (HAVE_LLVM >> 8) & 0xff, HAVE_LLVM & 0xff,
                                 MESA_LLVM_VERSION_PATCH);