aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar Antonin Décimo <antonin.decimo@gmail.com>2020-06-04 15:43:42 +0200
committerLibravatar Tudor Brindus <me@tbrindus.ca>2020-07-30 22:02:42 -0400
commitbbf7b92fe4b34288dbe7c58827a1f69428ffb263 (patch)
tree2837fac64c52cb5f51cc49367a40099068374de1 /sway/commands
parentLog empty value if envvar is not defined (diff)
downloadsway-bbf7b92fe4b34288dbe7c58827a1f69428ffb263.tar.gz
sway-bbf7b92fe4b34288dbe7c58827a1f69428ffb263.tar.zst
sway-bbf7b92fe4b34288dbe7c58827a1f69428ffb263.zip
Fix incorrect format specifiers
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/bind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/bind.c b/sway/commands/bind.c
index f903f939..f6e58d99 100644
--- a/sway/commands/bind.c
+++ b/sway/commands/bind.c
@@ -715,7 +715,7 @@ bool translate_binding(struct sway_binding *binding) {
715 struct keycode_matches matches = get_keycode_for_keysym(*keysym); 715 struct keycode_matches matches = get_keycode_for_keysym(*keysym);
716 716
717 if (matches.count != 1) { 717 if (matches.count != 1) {
718 sway_log(SWAY_INFO, "Unable to convert keysym %d into" 718 sway_log(SWAY_INFO, "Unable to convert keysym %" PRIu32 " into"
719 " a single keycode (found %d matches)", 719 " a single keycode (found %d matches)",
720 *keysym, matches.count); 720 *keysym, matches.count);
721 goto error; 721 goto error;