sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 7c636da8a307f5aa3aa5f38a71b0a4e28fd5564c
parent baa84a0cd7b547021551675b175e241b2166c317
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  8 Jan 2017 11:05:39 -0500

Fix format error

Diffstat:
Msway/config.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/config.c b/sway/config.c @@ -1074,7 +1074,7 @@ void apply_output_config(struct output_config *oc, swayc_t *output) { sway_log(L_DEBUG, "Setting background for output %d to %s", output_i, oc->background); - size_t bufsize = 4; + size_t bufsize = 12; char output_id[bufsize]; snprintf(output_id, bufsize, "%d", output_i); output_id[bufsize-1] = 0;