Skip to content

Commit

Permalink
Fix ubuntu build error
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Sep 19, 2024
1 parent fcea059 commit 341739e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hdf5/HDF5IO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ H5O_type_t HDF5IO::getObjectType(const std::string& path)
// get whether path is a dataset or group
H5O_info_t objInfo; // Structure to hold information about the object
H5Oget_info_by_name(
this - m_ > file->getId(), path.c_str(), &objInfo, H5P_DEFAULT);
this->m_file->getId(), path.c_str(), &objInfo, H5P_DEFAULT);
#endif
H5O_type_t objectType = objInfo.type;

Expand Down

0 comments on commit 341739e

Please sign in to comment.