From 341739ebea260062dcd3c337d89f4d0f608cc5e6 Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Thu, 19 Sep 2024 13:29:47 -0700 Subject: [PATCH] Fix ubuntu build error --- src/hdf5/HDF5IO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hdf5/HDF5IO.cpp b/src/hdf5/HDF5IO.cpp index aba82316..8ed70e86 100644 --- a/src/hdf5/HDF5IO.cpp +++ b/src/hdf5/HDF5IO.cpp @@ -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;