summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@users.noreply.github.com>2016-10-01 06:40:16 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-10-04 17:25:09 -0400
commit2d22a6fa1eb864393a022c478966f5d8a8e0679d (patch)
treefb508c60fd1d5d289968bdd823ef739b7b9d6814
parentCorrectly scale swaybar (diff)
downloadsway-2d22a6fa1eb864393a022c478966f5d8a8e0679d.tar.gz
sway-2d22a6fa1eb864393a022c478966f5d8a8e0679d.tar.zst
sway-2d22a6fa1eb864393a022c478966f5d8a8e0679d.zip
fix pointer format string in sway_log() call
-rw-r--r--sway/focus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/focus.c b/sway/focus.c
index b94dcbc7..35dff1e4 100644
--- a/sway/focus.c
+++ b/sway/focus.c
@@ -114,7 +114,7 @@ bool set_focused_container(swayc_t *c) {
114 c = get_focused_container(workspace); 114 c = get_focused_container(workspace);
115 } 115 }
116 116
117 swayc_log(L_DEBUG, c, "Setting focus to %p:%lu" PRIuPTR, c, c->handle); 117 swayc_log(L_DEBUG, c, "Setting focus to %p:%" PRIuPTR, c, c->handle);
118 118
119 if (c->type == C_VIEW) { 119 if (c->type == C_VIEW) {
120 // dispatch a window event 120 // dispatch a window event