output/swapchain: fix error return value types

This function returns a bool, not a pointer.
This commit is contained in:
Simon Ser 2023-06-22 13:55:45 +02:00
parent b5eaa47049
commit 6dd8b092e9
1 changed files with 2 additions and 2 deletions

View File

@ -101,13 +101,13 @@ bool wlr_output_configure_primary_swapchain(struct wlr_output *output,
if (swapchain == NULL) {
wlr_log(WLR_ERROR, "Failed to create modifier-less swapchain for output '%s'",
output->name);
return NULL;
return false;
}
wlr_log(WLR_DEBUG, "Testing modifier-less swapchain for output '%s'", output->name);
if (!test_swapchain(output, swapchain, state)) {
wlr_log(WLR_ERROR, "Swapchain for output '%s' failed test", output->name);
wlr_swapchain_destroy(swapchain);
return NULL;
return false;
}
}