meson: only build imgui when needed
[mesa.git] / src / vulkan / util / vk_debug_report.c
index 22ae4a7d931664bebb9e4c7217110426e8de2d12..c4884b963e052c59dda03a01a33943b2d10e8d55 100644 (file)
@@ -99,7 +99,7 @@ vk_debug_report(struct vk_debug_report_instance *instance,
                 const char *pMessage)
 {
    /* Allow NULL for convinience, return if no callbacks registered. */
-   if (!instance || list_empty(&instance->callbacks))
+   if (!instance || list_is_empty(&instance->callbacks))
       return;
 
    pthread_mutex_lock(&instance->callbacks_mutex);