diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-03-15 20:11:18 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-03-15 20:11:18 (GMT) |
commit | c233b4aa4a7d14438d4398906ccfb7576f440993 (patch) | |
tree | d1a8189a1292956c247a9585f73a7670bf7313bc | |
parent | de636e42896b700402d2b91885d2aaa3557c8380 (diff) | |
download | hdf5-c233b4aa4a7d14438d4398906ccfb7576f440993.zip hdf5-c233b4aa4a7d14438d4398906ccfb7576f440993.tar.gz hdf5-c233b4aa4a7d14438d4398906ccfb7576f440993.tar.bz2 |
[svn-r10219] Purpose: Minor bug fix
Description: Frank and I noticed that h5jam and h5unjam were using
old names when printing help message.
Solution: Fixed
Platforms tested: heping
Misc. update:
-rw-r--r-- | tools/h5jam/h5jam.c | 2 | ||||
-rw-r--r-- | tools/h5jam/h5unjam.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5jam/h5jam.c b/tools/h5jam/h5jam.c index 783434b..b0cf908 100644 --- a/tools/h5jam/h5jam.c +++ b/tools/h5jam/h5jam.c @@ -32,7 +32,7 @@ hsize_t compute_user_block_size (hsize_t); hsize_t copy_some_to_file (int, int, hsize_t, hsize_t, ssize_t); void parse_command_line (int, const char *[]); -const char *progname = "jam"; +const char *progname = "h5jam"; int d_status = EXIT_SUCCESS; int do_clobber = FALSE; char *output_file = NULL; diff --git a/tools/h5jam/h5unjam.c b/tools/h5jam/h5unjam.c index a22bb03..4ed7dd9 100644 --- a/tools/h5jam/h5unjam.c +++ b/tools/h5jam/h5unjam.c @@ -32,7 +32,7 @@ hsize_t write_pad( int , hsize_t ); hsize_t compute_pad( hsize_t ); hsize_t copy_to_file( int , int , ssize_t, ssize_t ); -const char *progname = "unjam"; +const char *progname = "h5unjam"; int d_status = EXIT_SUCCESS; int do_delete = FALSE; char *output_file = NULL; |