X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_bool.c;h=d1582f580366770a3290925a58dd24b4df95c7a3;hb=60a702f390f7e2addfdab79f2328db3ba2897c8b;hp=36c858bcae02c19b1587ec57b9f136b9f509812f;hpb=c6e47cbbff56f39f6d81b079ebaeac41d793d4d9;p=yaz-moved-to-github.git diff --git a/src/odr_bool.c b/src/odr_bool.c index 36c858b..d1582f5 100644 --- a/src/odr_bool.c +++ b/src/odr_bool.c @@ -1,9 +1,13 @@ /* - * 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_bool.c,v 1.1 2003-10-27 12:21:33 adam Exp $ + * $Id: odr_bool.c,v 1.4 2005-01-15 19:47:14 adam Exp $ + */ + +/** + * \file odr_bool.c + * \brief Implements ODR BOOLEAN codec */ #if HAVE_CONFIG_H #include @@ -34,7 +38,7 @@ int odr_bool(ODR o, int **p, int opt, const char *name) if (o->direction == ODR_PRINT) { odr_prname(o, name); - fprintf(o->print, "%s\n", (**p ? "TRUE" : "FALSE")); + odr_printf(o, "%s\n", (**p ? "TRUE" : "FALSE")); return 1; } if (cons)