summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-10-01 10:56:54 -0400
committerLibravatar GitHub <noreply@github.com>2016-10-01 10:56:54 -0400
commit79d2b0dee4362b6b2b25734ed7e24c698e7067b8 (patch)
treefb508c60fd1d5d289968bdd823ef739b7b9d6814
parentMerge pull request #920 from thejan2009/swaybar-scale (diff)
parentfix pointer format string in sway_log() call (diff)
downloadsway-79d2b0dee4362b6b2b25734ed7e24c698e7067b8.tar.gz
sway-79d2b0dee4362b6b2b25734ed7e24c698e7067b8.tar.zst
sway-79d2b0dee4362b6b2b25734ed7e24c698e7067b8.zip
Merge pull request #921 from zandrmartin/patch-3
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