mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-16 23:05:58 +01:00
format: fix format string
This commit is contained in:
parent
0d5115ab6b
commit
8876ceccc2
1 changed files with 1 additions and 1 deletions
|
@ -542,7 +542,7 @@ static void handleKeyboardKeymap(void* data, wl_keyboard* wl_keyboard, uint form
|
|||
|
||||
const char* buf = (const char*)mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
|
||||
if (buf == MAP_FAILED) {
|
||||
Debug::log(ERR, "Failed to mmap xkb keymap: %d", errno);
|
||||
Debug::log(ERR, "Failed to mmap xkb keymap: {}", errno);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue