mirror of
https://github.com/hyprwm/aquamarine.git
synced 2025-12-20 04:40:12 +01:00
backend: log no allocator errors
This commit is contained in:
parent
a3dda0d10c
commit
f239e5aadd
1 changed files with 3 additions and 1 deletions
|
|
@ -155,8 +155,10 @@ bool Aquamarine::CBackend::start() {
|
|||
}
|
||||
}
|
||||
|
||||
if (!primaryAllocator)
|
||||
if (!primaryAllocator) {
|
||||
log(AQ_LOG_CRITICAL, "Cannot open backend: no allocator available");
|
||||
return false;
|
||||
}
|
||||
|
||||
ready = true;
|
||||
for (auto const& b : implementations) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue