X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_util.c;h=644c3c37c25fbcfdfc2f84209cd44bf7d104e021;hp=238f1be86eb8c73fa15ab251853aae14f73121da;hb=d02429b9a7fb8bb01961a51c2446eb1dce048c78;hpb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35 diff --git a/src/odr_util.c b/src/odr_util.c index 238f1be..644c3c3 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2011 Index Data + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. */ /** @@ -12,16 +12,18 @@ #include #include -#include #include "odr-priv.h" #include void odr_prname(ODR o, const char *name) { - if (name) - odr_printf(o, "%*s%s ", o->op->indent*4, "", name); + if (o->op->indent < 16) + odr_printf(o, "%*s", o->op->indent * 2, ""); else - odr_printf(o, "%*s", o->op->indent*4, ""); + odr_printf(o, "level=%-7d%*s", o->op->indent, + 2 * (o->op->indent % 8) , ""); + if (name) + odr_printf(o, "%s ", name); } int odp_more_chunks(ODR o, const unsigned char *base, int len)