From 17a43cf2205a933169e11bc9280431577a183e65 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Fri, 4 Feb 2011 13:44:19 +0100 Subject: Add and use rs_debug() instead of fprintf to stderr. --- lib/debug.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'lib/debug.c') diff --git a/lib/debug.c b/lib/debug.c index 801f2fb..485e29a 100644 --- a/lib/debug.c +++ b/lib/debug.c @@ -21,6 +21,7 @@ rs_dump_packet (const struct rs_packet *pkt) p->code, p->id, p->data_len); + fflush (stderr); } void @@ -28,3 +29,19 @@ rs_dump_attr (const struct rs_attr *attr) { vp_printlist (stderr, attr->vp); } + +#if defined DEBUG +int +rs_debug (const char *fmt, ...) +{ + int n; + va_list args; + + va_start (args, fmt); + n = vfprintf (stderr, fmt, args); + va_end (args); + fflush (stderr); + + return n; +} +#endif -- cgit v1.1