summaryrefslogtreecommitdiffstats
path: root/src/H5Dio.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-11-03 19:27:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-11-03 19:27:25 (GMT)
commit3fd05c2dda351f55ca4067ddfc841eed92640076 (patch)
tree07be84b0478f2a6173fdafc3ef00ddd8436d0dec /src/H5Dio.c
parent63cb9f4d61bdb259877f79a41e5b140ae3a3cbe0 (diff)
downloadhdf5-3fd05c2dda351f55ca4067ddfc841eed92640076.zip
hdf5-3fd05c2dda351f55ca4067ddfc841eed92640076.tar.gz
hdf5-3fd05c2dda351f55ca4067ddfc841eed92640076.tar.bz2
[svn-r17813] Description:
Correct 'src' to 'dst' in error message for H5D_read. (Bz#1683) Tested on: Eyeballed only - too minor to require h5committest
Diffstat (limited to 'src/H5Dio.c')
-rw-r--r--src/H5Dio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c
index a4cf92f..62d2177 100644
--- a/src/H5Dio.c
+++ b/src/H5Dio.c
@@ -312,7 +312,7 @@ H5D_read(H5D_t *dataset, hid_t mem_type_id, const H5S_t *mem_space,
if(!mem_space)
mem_space = file_space;
if((snelmts = H5S_GET_SELECT_NPOINTS(mem_space)) < 0)
- HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "src dataspace has invalid selection")
+ HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "dst dataspace has invalid selection")
H5_ASSIGN_OVERFLOW(nelmts,snelmts,hssize_t,hsize_t);
/* Fill the DXPL cache values for later use */