[svn-r2549] Added usage message if the user doesn't specify a filename (i.e., no

command line arguments are given).
This commit is contained in:
Bill Wendling 2000-09-14 12:26:37 -05:00
parent 29a7f62218
commit 1a50cbd737

View File

@ -27,7 +27,6 @@
/* File drivers */
#include <H5FDfamily.h>
#define INDENT 3
#define VCOL 50
@ -59,6 +58,12 @@ main(int argc, char *argv[])
intn i, ndims;
herr_t status = SUCCEED;
if (argc == 1) {
fprintf(stderr,
"Usage: %s filename [signature addr [extra]]\n", argv[0]);
HDexit(1);
}
/*
* Open the file and get the file descriptor.
*/