summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-05-11 19:40:17 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-05-11 19:40:17 (GMT)
commita46dea601714983815b1c9923b7ce75483f2415f (patch)
treea6c3fed904ca33796673de6023d1ac0a607e41b7 /tools/h5repack/h5repack.c
parent05d75af8b88cc13232eda2b1660c1bb9ae0bb831 (diff)
downloadhdf5-a46dea601714983815b1c9923b7ce75483f2415f.zip
hdf5-a46dea601714983815b1c9923b7ce75483f2415f.tar.gz
hdf5-a46dea601714983815b1c9923b7ce75483f2415f.tar.bz2
[svn-r18758] Corrected missed progname to function instance
Diffstat (limited to 'tools/h5repack/h5repack.c')
-rw-r--r--tools/h5repack/h5repack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c
index ddca593..e1b2182 100644
--- a/tools/h5repack/h5repack.c
+++ b/tools/h5repack/h5repack.c
@@ -507,7 +507,7 @@ int copy_attr(hid_t loc_in,
buf = (void *)HDmalloc((size_t)(nelmts * msize));
if(buf == NULL)
{
- error_msg("h5repack", "cannot read into memory\n" );
+ error_msg(h5tools_getprogname(), "cannot read into memory\n" );
goto error;
}
if(H5Aread(attr_id, wtype_id, buf) < 0)