Skip to content

Commit

Permalink
Merge pull request #921 from zandrmartin/patch-3
Browse files Browse the repository at this point in the history
fix pointer format string in sway_log() call
  • Loading branch information
ddevault authored Oct 1, 2016
2 parents a4a5f62 + 58ac1f7 commit 79d2b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sway/focus.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 79d2b0d

Please sign in to comment.