X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_int.c;h=b7001d3525ac34bd59f09e69d7acc1183a418a1b;hp=938148135b348f17da13a2a7beea66e1596821c5;hb=e4368af2ede9079d33e7a8fd280d29b2bde1d1ad;hpb=05c274ef315384faafcc5900c17468f0ea2474e6 diff --git a/src/odr_int.c b/src/odr_int.c index 9381481..b7001d3 100644 --- a/src/odr_int.c +++ b/src/odr_int.c @@ -1,8 +1,8 @@ /* - * Copyright (c) 1995-2004, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: odr_int.c,v 1.3 2004-10-15 00:19:00 adam Exp $ + * $Id: odr_int.c,v 1.5 2005-06-25 15:46:04 adam Exp $ */ /** * \file odr_int.c @@ -35,7 +35,7 @@ int odr_integer(ODR o, int **p, int opt, const char *name) return odr_missing(o, opt, name); if (o->direction == ODR_PRINT) { - odr_prname(o, name); + odr_prname(o, name); odr_printf(o, "%d\n", **p); return 1; } @@ -48,3 +48,11 @@ int odr_integer(ODR o, int **p, int opt, const char *name) *p = (int *)odr_malloc(o, sizeof(int)); return ber_integer(o, *p); } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +