X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fmarcdump.c;h=b28a8385d135fbb6257b37c8d493096b5576f88d;hb=0341f9b770084da8ccb8e7be7039ce4a7abfdc88;hp=e270996f998e9bc37742e0f6dd950a00f86eaf85;hpb=044d170f0a963555486df54653cd2fdc5815928b;p=yaz-moved-to-github.git diff --git a/util/marcdump.c b/util/marcdump.c index e270996..b28a838 100644 --- a/util/marcdump.c +++ b/util/marcdump.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: marcdump.c,v $ - * Revision 1.7 1998-02-11 11:53:36 adam + * Revision 1.9 1999-11-30 13:47:12 adam + * Improved installation. Moved header files to include/yaz. + * + * Revision 1.8 1999/05/26 07:49:35 adam + * C++ compilation. + * + * Revision 1.7 1998/02/11 11:53:36 adam * Changed code so that it compiles as C++. * * Revision 1.6 1997/12/12 06:32:33 adam @@ -31,9 +37,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #ifndef SEEK_SET #define SEEK_SET 0 @@ -87,7 +93,7 @@ int main (int argc, char **argv) prog, strerror (errno)); exit (1); } - if (fread (buf, 1, file_size, inf) != file_size) + if ((long) fread (buf, 1, file_size, inf) != file_size) { fprintf (stderr, "%s: cannot read %s: %s\n", prog, arg, strerror (errno));