X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fmarcdump.c;h=662445ea00c339808c5c6222a4e2f8027ada089d;hb=394286df42e6e2c01e5b1b446ae1cf8d0b117f35;hp=cb72a8411491929a5ec2265b6a8b966f38542701;hpb=29640f69a8ba3211f384abca32b57b6c3faaf75e;p=yaz-moved-to-github.git diff --git a/util/marcdump.c b/util/marcdump.c index cb72a84..662445e 100644 --- a/util/marcdump.c +++ b/util/marcdump.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: marcdump.c,v 1.55 2007-12-18 21:13:06 adam Exp $ */ #define _FILE_OFFSET_BITS 64 @@ -334,7 +332,11 @@ static void dump(const char *fname, const char *from, const char *to, r = yaz_marc_decode_buf(mt, buf, -1, &result, &len_result); if (r > 0 && result) { - fwrite (result, len_result, 1, stdout); + if (fwrite(result, len_result, 1, stdout) != 1) + { + fprintf(stderr, "Write to stdout failed\n"); + break; + } } if (r > 0 && cfile) {