summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-08-22 12:53:31 -0400
committerLibravatar GitHub <noreply@github.com>2016-08-22 12:53:31 -0400
commitf4356135a1bd17f46eabc893415bfb1fd03fcd7f (patch)
tree8d8a01c33c73164171823f0a4ec4ec43ead50f6c
parentMerge pull request #867 from kb100/fix-865 (diff)
parentFix a format string (diff)
downloadsway-f4356135a1bd17f46eabc893415bfb1fd03fcd7f.tar.gz
sway-f4356135a1bd17f46eabc893415bfb1fd03fcd7f.tar.zst
sway-f4356135a1bd17f46eabc893415bfb1fd03fcd7f.zip
Merge pull request #869 from Hummer12007/patch-1
Fix a format string
-rw-r--r--sway/focus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/focus.c b/sway/focus.c
index 1ea88ad4..145e5584 100644
--- a/sway/focus.c
+++ b/sway/focus.c
@@ -115,7 +115,7 @@ bool set_focused_container(swayc_t *c) {
115 c = get_focused_container(workspace); 115 c = get_focused_container(workspace);
116 } 116 }
117 117
118 swayc_log(L_DEBUG, c, "Setting focus to %p:%" PRIuPTR, c, c->handle); 118 swayc_log(L_DEBUG, c, "Setting focus to %p:%lu" PRIuPTR, c, c->handle);
119 119
120 if (c->type == C_VIEW) { 120 if (c->type == C_VIEW) {
121 // dispatch a window event 121 // dispatch a window event