aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@users.noreply.github.com>2016-10-01 06:40:16 -0500
committerLibravatar GitHub <noreply@github.com>2016-10-01 06:40:16 -0500
commit58ac1f7f247f19bf4adbbb8bd76826c72b906559 (patch)
treefb508c60fd1d5d289968bdd823ef739b7b9d6814 /sway
parentMerge pull request #920 from thejan2009/swaybar-scale (diff)
downloadsway-58ac1f7f247f19bf4adbbb8bd76826c72b906559.tar.gz
sway-58ac1f7f247f19bf4adbbb8bd76826c72b906559.tar.zst
sway-58ac1f7f247f19bf4adbbb8bd76826c72b906559.zip
fix pointer format string in sway_log() call
Diffstat (limited to 'sway')
-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