swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit 3d91ff688314aed8e43e5cb0f2c71a676462ce3a
parent a3c21719689a9376ff5ac4cd1a8e8879b3a878a2
Author: Michael Forney <mforney@mforney.org>
Date:   Tue, 21 Jan 2014 19:37:47 -0800

xkb: Remove unnecessary print statement

Diffstat:
Mlibswc/xkb.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/libswc/xkb.c b/libswc/xkb.c @@ -102,9 +102,6 @@ bool swc_xkb_update_keymap(struct swc_xkb * xkb) xkb->indices.shift = xkb_keymap_mod_get_index(xkb->keymap.map, XKB_MOD_NAME_SHIFT); - printf("indices { ctrl: %x, alt: %x, super: %x, shift: %x }\n", - xkb->indices.ctrl, xkb->indices.alt, xkb->indices.super, xkb->indices.shift); - /* Keymap string */ { const char * keymap_directory = getenv("XDG_RUNTIME_DIR") ?: "/tmp";