From 4a17b41d9fa2385904a12e7336d18b53c92bc332 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 25 Nov 2024 10:50:10 -0600 Subject: [PATCH] Convert more calls --- HDF5Examples/HFCXX/H5D/readdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HDF5Examples/HFCXX/H5D/readdata.cpp b/HDF5Examples/HFCXX/H5D/readdata.cpp index 0e034bc98d7..b0b27dc67ce 100644 --- a/HDF5Examples/HFCXX/H5D/readdata.cpp +++ b/HDF5Examples/HFCXX/H5D/readdata.cpp @@ -85,7 +85,7 @@ main(void) // Get the dimension size of each dimension in the dataspace and // display them. - auto dimss_out = dspace.getDimensions() std::cout << "rank " << rank << ", dimensions " + auto dims_out = dspace.getDimensions() std::cout << "rank " << rank << ", dimensions " << (unsigned long)(dims_out[0]) << " x " << (unsigned long)(dims_out[1]) << std::endl;