diff options
author | Antonin Décimo <antonin.decimo@gmail.com> | 2020-06-04 15:43:42 +0200 |
---|---|---|
committer | Tudor Brindus <me@tbrindus.ca> | 2020-07-30 22:02:42 -0400 |
commit | bbf7b92fe4b34288dbe7c58827a1f69428ffb263 (patch) | |
tree | 2837fac64c52cb5f51cc49367a40099068374de1 /sway/commands/bind.c | |
parent | a1c6052383d382d978ca597dc5fb280c0343db60 (diff) |
Fix incorrect format specifiers
Diffstat (limited to 'sway/commands/bind.c')
-rw-r--r-- | sway/commands/bind.c | 2 |
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) { struct keycode_matches matches = get_keycode_for_keysym(*keysym); if (matches.count != 1) { - sway_log(SWAY_INFO, "Unable to convert keysym %d into" + sway_log(SWAY_INFO, "Unable to convert keysym %" PRIu32 " into" " a single keycode (found %d matches)", *keysym, matches.count); goto error; |