diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-25 19:52:10 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-25 19:52:10 (GMT) |
commit | 33189bd39be337df900a5dbd65190b111a959f31 (patch) | |
tree | 27f6de45d7232c4fabdd6c2285aeb98a29c5e424 /c++/src | |
parent | b3afaccfe51320c3cb38a2338d17ba8f79c15073 (diff) | |
download | hdf5-33189bd39be337df900a5dbd65190b111a959f31.zip hdf5-33189bd39be337df900a5dbd65190b111a959f31.tar.gz hdf5-33189bd39be337df900a5dbd65190b111a959f31.tar.bz2 |
[svn-r4573]
Purpose:
Switch mount property list to the new generic property list.
Platforms tested:
IRIX64 6.5, SunOS 5.7, FreeBSD.
Diffstat (limited to 'c++/src')
-rw-r--r-- | c++/src/H5PropList.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/c++/src/H5PropList.cpp b/c++/src/H5PropList.cpp index 907791a..38bf355 100644 --- a/c++/src/H5PropList.cpp +++ b/c++/src/H5PropList.cpp @@ -30,8 +30,7 @@ Description: */ PropList::PropList( const hid_t plist_id ) : IdComponent(0) { - if (H5I_GENPROP_CLS == H5Iget_type(plist_id) - || plist_id==H5P_MOUNT) { + if (H5I_GENPROP_CLS == H5Iget_type(plist_id)) { // call C routine to create the new property id = H5Pcreate(plist_id); if( id <= 0 ) |