Add '\n' at the end of traces.
diff --git a/windows/x11drv/keyboard.c b/windows/x11drv/keyboard.c
index f9a18bb..9bc5242 100644
--- a/windows/x11drv/keyboard.c
+++ b/windows/x11drv/keyboard.c
@@ -692,7 +692,7 @@
TRACE("called\n");
if (!TSXQueryKeymap(display, keys_return)) {
- ERR("Error getting keymap !");
+ ERR("Error getting keymap !\n");
return;
}
@@ -850,7 +850,7 @@
syms = keysyms_per_keycode;
if (syms > 4) {
- WARN("%d keysyms per keycode not supported, set to 4", syms);
+ WARN("%d keysyms per keycode not supported, set to 4\n", syms);
syms = 4;
}
for (current = 0; main_key_tab[current].comment; current++) {