From 58ac1f7f247f19bf4adbbb8bd76826c72b906559 Mon Sep 17 00:00:00 2001 From: Zandr Martin Date: Sat, 1 Oct 2016 06:40:16 -0500 Subject: [PATCH] fix pointer format string in sway_log() call --- sway/focus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { c = get_focused_container(workspace); } - swayc_log(L_DEBUG, c, "Setting focus to %p:%lu" PRIuPTR, c, c->handle); + swayc_log(L_DEBUG, c, "Setting focus to %p:%" PRIuPTR, c, c->handle); if (c->type == C_VIEW) { // dispatch a window event