Re: [PATCH 8/8] Use vfprintf in debug_printf and write to stderr.

2010-08-11 Thread olafBuddenhagen
Hi, On Wed, Aug 04, 2010 at 04:20:06AM -0300, Diego Nieto Cid wrote: > @@ -123,7 +123,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); Looks right :-) I guess the t

[PATCH 8/8] Use vfprintf in debug_printf and write to stderr.

2010-08-04 Thread Diego Nieto Cid
--- xkb.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xkb.c b/xkb.c index 8c16d35..ad990e8 100644 --- a/xkb.c +++ b/xkb.c @@ -123,7 +123,7 @@ debug_printf (const char *f, ...) va_start (ap, f); #ifdef XKB_DEBUG - ret = printf (f, ap); + ret = vfprintf (stder