X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_null.c;h=afb893db398614d0375a49e4f7ff088837ab2ffe;hb=60a702f390f7e2addfdab79f2328db3ba2897c8b;hp=cc33ff77eb68e57723ea773c05a7847f427c6cea;hpb=c6e47cbbff56f39f6d81b079ebaeac41d793d4d9;p=yaz-moved-to-github.git diff --git a/src/odr_null.c b/src/odr_null.c index cc33ff7..afb893d 100644 --- a/src/odr_null.c +++ b/src/odr_null.c @@ -1,9 +1,12 @@ /* - * Copyright (c) 1995-2003, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * - * $Id: odr_null.c,v 1.1 2003-10-27 12:21:33 adam Exp $ + * $Id: odr_null.c,v 1.5 2005-01-15 19:47:14 adam Exp $ + */ +/** + * \file odr_null.c + * \brief Implements ODR NULL codec */ #if HAVE_CONFIG_H #include @@ -33,7 +36,7 @@ int odr_null(ODR o, Odr_null **p, int opt, const char *name) if (o->direction == ODR_PRINT) { odr_prname(o, name); - fprintf(o->print, "NULL\n"); + odr_printf(o, "NULL\n"); return 1; } if (cons) @@ -42,7 +45,7 @@ int odr_null(ODR o, Odr_null **p, int opt, const char *name) odr_seterror(OPROTO, 42); return 0; #else - fprintf(stderr, "odr: Warning: Bad NULL\n"); + /* Warning: Bad NULL */ #endif } if (o->direction == ODR_DECODE)