X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Fmarcdump.c;h=e1e9e9a87a7a1461f0dab5c5c9d26d444a5c07a1;hp=2eddc4259fcb5c6b009ac2634eac7c627a33dd2f;hb=d296bf4d8d017e615b5030f422b99053c4e382e0;hpb=99268f722648e84bf5c54eb685a1434e100f38a1 diff --git a/util/marcdump.c b/util/marcdump.c index 2eddc42..e1e9e9a 100644 --- a/util/marcdump.c +++ b/util/marcdump.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: marcdump.c,v $ - * Revision 1.3 1995-05-16 08:51:12 quinn + * Revision 1.4 1995-11-01 13:55:05 quinn + * Minor adjustments + * + * Revision 1.3 1995/05/16 08:51:12 quinn * License, documentation, and memory fixes * * Revision 1.2 1995/05/15 11:56:56 quinn @@ -19,7 +22,7 @@ #include #include #include -#include +#include #ifndef SEEK_SET #define SEEK_SET 0 @@ -60,10 +63,10 @@ int main (int argc, char **argv) *argv, argv[1], strerror (errno)); exit (1); } - buf = malloc (file_size); + buf = xmalloc (file_size); if (!buf) { - fprintf (stderr, "%s: cannot malloc: %s\n", + fprintf (stderr, "%s: cannot xmalloc: %s\n", *argv, strerror (errno)); exit (1); }