Skip to content

Commit

Permalink
format: fix format string
Browse files Browse the repository at this point in the history
  • Loading branch information
vaxerski committed Feb 26, 2024
1 parent 0d5115a commit 8876cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/hyprlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 8876cec

Please sign in to comment.