From 8876ceccc20f9d1d14e34986fdf62259f6f0022b Mon Sep 17 00:00:00 2001 From: Vaxry Date: Mon, 26 Feb 2024 19:51:12 +0000 Subject: [PATCH] format: fix format string --- src/core/hyprlock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hyprlock.cpp b/src/core/hyprlock.cpp index fe8c3d6..4cf1cab 100644 --- a/src/core/hyprlock.cpp +++ b/src/core/hyprlock.cpp @@ -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; }