xkb debug events should be printed to stderr

This commit is contained in:
Kovid Goyal 2022-02-14 15:03:31 +05:30
parent d24248e93b
commit 0248edbdb9
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

2
glfw/xkb_glfw.c vendored
View File

@ -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"