]> git.sur5r.net Git - i3/i3/commit
Bugfix: serialize con_id with %p in run_binding()
authorTony Crisci <tony@dubstepdish.com>
Sun, 26 Apr 2015 00:05:55 +0000 (20:05 -0400)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 30 Jul 2015 19:34:43 +0000 (21:34 +0200)
commitc1b6c946215d0622a4d414fa191623f40f481362
treed03a267aab85cd840b6c68896181f6f6cf1f1197
parentc0dbc5dd77388f79f1ebfe233398b9f44e43fd2a
Bugfix: serialize con_id with %p in run_binding()

%p is equivalent to either %x or %lx, depending on the pointer size of the
platform. Before this commit, we always used %d, which has the same behavior
on Linux, but is not automatically expanded to %ld on e.g. FreeBSD.

fixes #1661
src/bindings.c