summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-13 16:55:40 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-13 16:55:40 (GMT)
commit5e94d0336fa7a0ebc0a25d002b413221284691b6 (patch)
treeeba2a4b72fa29b885ee030ff53983ad9ccfdc21d /src/H5Fint.c
parent1aab0b3569269c09e4f8cab70b9e6c0c5b298797 (diff)
downloadhdf5-5e94d0336fa7a0ebc0a25d002b413221284691b6.zip
hdf5-5e94d0336fa7a0ebc0a25d002b413221284691b6.tar.gz
hdf5-5e94d0336fa7a0ebc0a25d002b413221284691b6.tar.bz2
[svn-r22574] oops, parameter switch order
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index 2a614b6..65b5b08 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -228,7 +228,7 @@ H5F_get_obj_count_cb(void UNUSED *obj_ptr, hid_t obj_id, void *key)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid file identifier")
if(H5VL_file_get(obj, vol_plugin, H5VL_FILE_GET_OBJ_COUNT, H5_REQUEST_NULL,
- &obj_count, udata->types) < 0)
+ udata->types, &obj_count) < 0)
HGOTO_ERROR(H5E_INTERNAL, H5E_CANTGET, H5_ITER_ERROR, "unable to get object count in file(s)")
*(udata->obj_count) += obj_count;