diff options
Diffstat (limited to 'c++/src')
-rw-r--r-- | c++/src/H5Object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5Object.cpp b/c++/src/H5Object.cpp index 0b6c20e..70ec66e 100644 --- a/c++/src/H5Object.cpp +++ b/c++/src/H5Object.cpp @@ -137,7 +137,7 @@ Attribute H5Object::createAttribute( const H5std_string& name, const DataType& d //-------------------------------------------------------------------------- Attribute H5Object::openAttribute( const char* name ) const { - hid_t attr_id = H5Aopen( id, ".", name, H5P_DEFAULT, H5P_DEFAULT ); + hid_t attr_id = H5Aopen( id, name, H5P_DEFAULT ); if( attr_id > 0 ) { Attribute attr( attr_id ); |