X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_seq.c;h=b73d1fdcbc958923feb31b668b4091cd1b57b581;hb=8d691989077a0addcbd840d769dce6700f3d9622;hp=3e2a03b54de3611964d00b75f38cf08ddbcc2fe4;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505;p=yaz-moved-to-github.git diff --git a/src/odr_seq.c b/src/odr_seq.c index 3e2a03b..b73d1fd 100644 --- a/src/odr_seq.c +++ b/src/odr_seq.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: odr_seq.c,v 1.4 2005-06-25 15:46:04 adam Exp $ + * $Id: odr_seq.c,v 1.6 2007-01-03 08:42:15 adam Exp $ */ /** * \file odr_seq.c @@ -110,14 +110,8 @@ static int odr_sequence_x (ODR o, Odr_fun type, void *p, int *num) } break; case ODR_ENCODE: case ODR_PRINT: -#ifdef ODR_DEBUG - fprintf(stderr, "[seqof: num=%d]", *num); -#endif for (i = 0; i < *num; i++) { -#ifdef ODR_DEBUG - fprintf(stderr, "[seqof: elem #%d]", i); -#endif if (!(*type)(o, *pp + i, 0, 0)) return 0; }