]> git.sur5r.net Git - i3/i3/commit
Bugfix: serialize con_id with %p in run_binding() 1672/head
authorTony Crisci <tony@dubstepdish.com>
Sun, 26 Apr 2015 00:05:55 +0000 (20:05 -0400)
committerTony Crisci <tony@dubstepdish.com>
Sun, 26 Apr 2015 00:05:55 +0000 (20:05 -0400)
commit5c32de43c08c0b35ead53fe7d677ad51b5a5ce95
tree77b93f41bbfd1770dc5500e9ae14b9410999c7b5
parent57ddd00814706320bf9f0851a1b4fe2c918bc60b
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