summaryrefslogtreecommitdiff
path: root/console-client
diff options
context:
space:
mode:
authorDiego Nieto Cid <dnietoc@gmail.com>2010-08-03 13:02:09 -0300
committerDiego Nieto Cid <dnietoc@gmail.com>2011-04-08 14:36:19 -0300
commit6ed86a3ea0259de74660d7b9546ca9747049b667 (patch)
tree503a7766b2d275032289cb4ceb6e855fd7c7936e /console-client
parent8ff4dc8b26e35c192d090ad1b058493ca8e7269e (diff)
Use vfprintf in debug_printf and write to stderr.
Diffstat (limited to 'console-client')
-rw-r--r--console-client/xkb/xkb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console-client/xkb/xkb.c b/console-client/xkb/xkb.c
index 079d8f16..e84ded06 100644
--- a/console-client/xkb/xkb.c
+++ b/console-client/xkb/xkb.c
@@ -111,7 +111,7 @@ debug_printf (const char *f, ...)
va_start (ap, f);
#ifdef XKB_DEBUG
- ret = printf (f, ap);
+ ret = vfprintf (stderr, f, ap);
#endif
va_end (ap);