X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_util.c;h=0d4db2e306422f536f6b079295408f8734ef8ea5;hb=2af25caef50026e60e2ae91dbf175e86c31463df;hp=2566143e9831043dee48840fb04e1d87909314c2;hpb=983b28466be0739a9408c79624aedb47894504a3;p=yaz-moved-to-github.git diff --git a/src/odr_util.c b/src/odr_util.c index 2566143..0d4db2e 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -2,7 +2,11 @@ * Copyright (c) 1995-2004, Index Data * See the file LICENSE for details. * - * $Id: odr_util.c,v 1.3 2004-01-05 14:46:52 adam Exp $ + * $Id: odr_util.c,v 1.5 2004-10-15 00:19:00 adam Exp $ + */ +/** + * \file odr_util.c + * \brief Implements various ODR utilities */ #if HAVE_CONFIG_H #include @@ -17,9 +21,9 @@ void odr_prname(ODR o, const char *name) { if (name) - fprintf (o->print, "%*s%s ", o->indent*4, "", name); + odr_printf(o, "%*s%s ", o->indent*4, "", name); else - fprintf (o->print, "%*s", o->indent*4, ""); + odr_printf(o, "%*s", o->indent*4, ""); } int odp_more_chunks(ODR o, const unsigned char *base, int len)