diff options
author | Ikalco <[email protected]> | 2024-07-22 11:06:11 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-22 18:06:11 +0200 |
commit | e8374e07927826f43d30803b6db00c3b88482e7e (patch) | |
tree | af37a718d9a7ce6453600eebbfd536ee034f2af1 /src/xwayland | |
parent | 77b134e23baf769aecdf2ea8ed14d55d00228ce1 (diff) | |
download | Hyprland-e8374e07927826f43d30803b6db00c3b88482e7e.tar.gz Hyprland-e8374e07927826f43d30803b6db00c3b88482e7e.zip |
debug: get rid of useless 1s in logs (#6969)
* get rid of 1s in logs lol
* replace WLR with AQ in logs
Diffstat (limited to 'src/xwayland')
-rw-r--r-- | src/xwayland/XWM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xwayland/XWM.cpp b/src/xwayland/XWM.cpp index bb69afda..498710a4 100644 --- a/src/xwayland/XWM.cpp +++ b/src/xwayland/XWM.cpp @@ -937,7 +937,7 @@ void CXWM::onNewSurface(SP<CWLSurfaceResource> surf) { if (surf->client() != g_pXWayland->pServer->xwaylandClient) return; - Debug::log(LOG, "[xwm] New XWayland surface at {:x}", (uintptr_t)surf); + Debug::log(LOG, "[xwm] New XWayland surface at {:x}", (uintptr_t)surf.get()); const auto WLID = surf->id(); |