diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-01-14 17:45:20 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-01-14 17:45:20 (GMT) |
commit | 62a9b30a6465db12dd9ee552045cca9d95a40bc3 (patch) | |
tree | 7e6da96371a5b1dabda578adaae72ce2758eb86f /tools/h5repack/h5repack.c | |
parent | 727f26263fd42303314a1e9b2c074205500f9b07 (diff) | |
download | hdf5-62a9b30a6465db12dd9ee552045cca9d95a40bc3.zip hdf5-62a9b30a6465db12dd9ee552045cca9d95a40bc3.tar.gz hdf5-62a9b30a6465db12dd9ee552045cca9d95a40bc3.tar.bz2 |
[svn-r8060] Purpose:
added a usage message for h5repack
Description:
Solution:
Platforms tested:
linux
solaris
AIX
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.c')
-rw-r--r-- | tools/h5repack/h5repack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c index a6a6989..37ef3d1 100644 --- a/tools/h5repack/h5repack.c +++ b/tools/h5repack/h5repack.c @@ -73,8 +73,8 @@ int h5repack(const char* infile, if (check_objects(infile,options)<0) return -1; - /* copy the file */ - if (copy_file(infile,outfile,options)<0) + /* copy the objects */ + if (copy_objects(infile,outfile,options)<0) return -1; |