diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-08-22 18:41:16 +0300 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-08-22 18:41:16 +0300 |
| commit | 1c649e3fffb41146bde5a3bcd618f94a47cf49bf (patch) | |
| tree | 8d8a01c33c73164171823f0a4ec4ec43ead50f6c | |
| parent | 55f7e124b813daa69c610bfb41f2b5df9a05ca7d (diff) | |
Fix a format string
| -rw-r--r-- | sway/focus.c | 2 |
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) { c = get_focused_container(workspace); } - swayc_log(L_DEBUG, c, "Setting focus to %p:%" PRIuPTR, c, c->handle); + swayc_log(L_DEBUG, c, "Setting focus to %p:%lu" PRIuPTR, c, c->handle); if (c->type == C_VIEW) { // dispatch a window event |
