X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr_util.c;h=16dc98471aea3bf6c0f7b63fd4f88bb67af9e023;hb=eb2d32be86dd9b1db4303f37dcd4bc3b8927e5ad;hp=af26baebbce4a98eda76be236651c2e6f9085888;hpb=173d9f50b7a6c63dff6c74dc5c3efe985f75ef39;p=yaz-moved-to-github.git diff --git a/odr/odr_util.c b/odr/odr_util.c index af26bae..16dc984 100644 --- a/odr/odr_util.c +++ b/odr/odr_util.c @@ -2,7 +2,15 @@ #include void *nalloc(ODR o, int size) { return malloc(size); } -char *odr_indent(ODR o) {return "";} + +char *odr_indent(ODR o) +{ + static char buf[512]; + + memset(buf, ' ', 512); + buf[o->indent * 4] = 0; + return buf; +} int odp_more_chunks(ODR o, unsigned char *base, int len) {