diff options
author | vaxerski <[email protected]> | 2022-05-30 14:12:36 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-05-30 14:12:36 +0200 |
commit | e81790f357e387515467761f0bc3c032a1bb771f (patch) | |
tree | 10d5727039d89b5ec41e96930724398c83fec17c | |
parent | edf57c50ff34315c0b787672220316c1bb7ade87 (diff) | |
download | Hyprland-e81790f357e387515467761f0bc3c032a1bb771f.tar.gz Hyprland-e81790f357e387515467761f0bc3c032a1bb771f.zip |
massive oopsie in logsv0.1.4betav0.1.3abeta
-rw-r--r-- | src/managers/KeybindManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 79c2eaa8..62b91814 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -89,7 +89,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const xkb_keysym_t Debug::log(ERR, "Inavlid handler in a keybind! (handler %s does not exist)", k.handler.c_str()); } else { // call the dispatcher - Debug::log(LOG, "Keybind triggered, calling dispatcher (%d, %s)", modmask, KBKEYUPPER); + Debug::log(LOG, "Keybind triggered, calling dispatcher (%d, %d)", modmask, KBKEYUPPER); DISPATCHER->second(k.arg); } |