From: mdw Date: Sun, 13 Jan 2002 13:34:32 +0000 (+0000) Subject: Track @dstr_vputf@ interface change. X-Git-Tag: 2.0.4~81 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/commitdiff_plain/7d0dd9ff349fde0a15669d58a4e1f945161ea5b3?ds=sidebyside Track @dstr_vputf@ interface change. --- diff --git a/trace.c b/trace.c index 749b4ab..b1ba32f 100644 --- a/trace.c +++ b/trace.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: trace.c,v 1.6 2001/02/03 16:23:55 mdw Exp $ + * $Id: trace.c,v 1.7 2002/01/13 13:34:32 mdw Exp $ * * Tracing functions for debugging * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: trace.c,v $ + * Revision 1.7 2002/01/13 13:34:32 mdw + * Track @dstr_vputf@ interface change. + * * Revision 1.6 2001/02/03 16:23:55 mdw * New custom trace output interface. * @@ -111,7 +114,7 @@ void trace(unsigned l, const char *f, ...) if ((l & tracing()) == 0) return; va_start(ap, f); - dstr_vputf(&d, f, ap); + dstr_vputf(&d, f, &ap); va_end(ap); tracefunc(d.buf, d.len, tracearg); dstr_destroy(&d);