X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaziconv.c;h=a755a7d85818f6ae4eeb7c4a13c000804bc3df2a;hb=cddd92d66e3a59179357c552a53cd7cba43f646f;hp=45476145f5ea5deff32f34966b56f54f5e6f4027;hpb=4e82b831a8ac31e25b246a631acde354d8161688;p=yaz-moved-to-github.git diff --git a/util/yaziconv.c b/util/yaziconv.c index 4547614..a755a7d 100644 --- a/util/yaziconv.c +++ b/util/yaziconv.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: yaziconv.c,v 1.3 2005-01-17 13:09:43 adam Exp $ + * $Id: yaziconv.c,v 1.5 2006-04-21 10:28:07 adam Exp $ */ #if HAVE_CONFIG_H @@ -51,8 +51,8 @@ void convert (FILE *inf, yaz_iconv_t cd, int verbose) } if (verbose > 1) { - fprintf (stderr, "yaz_iconv: inbytesleft=%d outbytesleft=%d\n", - inbytesleft, outbytesleft); + fprintf (stderr, "yaz_iconv: inbytesleft=%ld outbytesleft=%ld\n", + (long) inbytesleft, (long) outbytesleft); } r = yaz_iconv (cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); @@ -180,3 +180,11 @@ int main (int argc, char **argv) yaz_iconv_close (cd); return 0; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +