anv/wayland: fix assert typo
authorEric Engestrom <eric.engestrom@imgtec.com>
Tue, 30 Aug 2016 10:30:12 +0000 (11:30 +0100)
committerAnuj Phogat <anuj.phogat@gmail.com>
Tue, 30 Aug 2016 20:47:51 +0000 (13:47 -0700)
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
src/intel/vulkan/anv_wsi_wayland.c

index a9e1617..d210e79 100644 (file)
@@ -116,7 +116,7 @@ wl_drm_format_for_vk_format(VkFormat vk_format, bool alpha)
 #endif
 
    default:
-      assert("!Unsupported Vulkan format");
+      assert(!"Unsupported Vulkan format");
       return 0;
    }
 }