summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2012-08-15 14:11:54 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2012-08-15 14:11:54 (GMT)
commit4e44c3b7e27e3cd76d148bc5158a17d747aeea62 (patch)
treeb9482d3aba844e59101844953f063560cda4abb1
parent515d6ccc8eb39dd42c34ce4dd2b4207760cac571 (diff)
downloadhdf5-4e44c3b7e27e3cd76d148bc5158a17d747aeea62.zip
hdf5-4e44c3b7e27e3cd76d148bc5158a17d747aeea62.tar.gz
hdf5-4e44c3b7e27e3cd76d148bc5158a17d747aeea62.tar.bz2
[svn-r22680] Description:
Correct H5P_init_def_layout() to H5P__init_def_layout(), per Windows daily test failure Tested on: Windows daily test
-rw-r--r--src/H5Pdcpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c
index 89dd91f..49a663d 100644
--- a/src/H5Pdcpl.c
+++ b/src/H5Pdcpl.c
@@ -996,7 +996,7 @@ H5Pset_chunk_opts(hid_t plist_id, unsigned options)
* the default layout structs have been initialized yet or not. *ick* -QAK
*/
if(!H5P_dcrt_def_layout_init_g)
- if(H5P_init_def_layout() < 0)
+ if(H5P__init_def_layout() < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTINIT, FAIL, "can't initialize default layout info")
#endif /* H5_HAVE_C99_DESIGNATED_INITIALIZER */
@@ -1059,7 +1059,7 @@ H5Pget_chunk_opts(hid_t plist_id, unsigned *options)
* the default layout structs have been initialized yet or not. *ick* -QAK
*/
if(!H5P_dcrt_def_layout_init_g)
- if(H5P_init_def_layout() < 0)
+ if(H5P__init_def_layout() < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTINIT, FAIL, "can't initialize default layout info")
#endif /* H5_HAVE_C99_DESIGNATED_INITIALIZER */