xkb debug events should be printed to stderr
This commit is contained in:
parent
d24248e93b
commit
0248edbdb9
1 changed files with 1 additions and 1 deletions
2
glfw/xkb_glfw.c
vendored
2
glfw/xkb_glfw.c
vendored
|
|
@ -33,7 +33,7 @@
|
|||
#include <X11/XKBlib.h>
|
||||
#endif
|
||||
|
||||
#define debug(...) if (_glfw.hints.init.debugKeyboard) printf(__VA_ARGS__);
|
||||
#define debug(...) if (_glfw.hints.init.debugKeyboard) fprintf(stderr, __VA_ARGS__);
|
||||
|
||||
#ifdef XKB_HAS_NO_UTF32
|
||||
#include "xkb-compat-shim.h"
|
||||
|
|
|
|||
Loading…
Reference in a new issue