diff options
author | vaxerski <[email protected]> | 2023-01-28 18:10:57 +0000 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-01-28 18:10:57 +0000 |
commit | 328e0344725aa9a9705fafc0817f3b825efef73e (patch) | |
tree | ce447bf487679dd35bba67d0e1f288def0a017aa | |
parent | 1c1e688564500ac0a4938d8dcc77382b370dacd6 (diff) | |
download | Hyprland-328e0344725aa9a9705fafc0817f3b825efef73e.tar.gz Hyprland-328e0344725aa9a9705fafc0817f3b825efef73e.zip |
fix clang error
-rw-r--r-- | src/managers/input/InputManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 2b685b9a..f00b135a 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -1180,7 +1180,7 @@ void CInputManager::setTabletConfigs() { const auto LIBINPUTDEV = (libinput_device*)wlr_libinput_get_device_handle(t.wlrDevice); const int ROTATION = std::clamp(HASCONFIG ? g_pConfigManager->getDeviceInt(t.name, "transform") : g_pConfigManager->getInt("input:tablet:transform"), 0, 7); - Debug::log(LOG, "Setting calibration matrix for device %s", t.name); + Debug::log(LOG, "Setting calibration matrix for device %s", t.name.c_str()); libinput_device_config_calibration_set_matrix(LIBINPUTDEV, MATRICES[ROTATION]); const auto OUTPUT = HASCONFIG ? g_pConfigManager->getDeviceString(t.name, "output") : g_pConfigManager->getString("input:tablet:output"); |