From e5b8e4ee8046f22e8915ccf9e056d93310bf7a24 Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Tue, 24 Feb 2026 10:49:11 +0100 Subject: [PATCH] fix the master hdf5 extension from aprevious PR (#1399) --- slsReceiverSoftware/src/MasterFileUtility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slsReceiverSoftware/src/MasterFileUtility.cpp b/slsReceiverSoftware/src/MasterFileUtility.cpp index ffead18a9..88d5fd299 100644 --- a/slsReceiverSoftware/src/MasterFileUtility.cpp +++ b/slsReceiverSoftware/src/MasterFileUtility.cpp @@ -121,7 +121,7 @@ std::string CreateMasterHDF5File(const std::filesystem::path &filePath, std::mutex *hdf5LibMutex) { std::filesystem::path p = filePath / (fileNamePrefix + "_master_" + - std::to_string(fileIndex) + ".json"); + std::to_string(fileIndex) + ".h5"); std::string fileName = p.string(); std::lock_guard lock(*hdf5LibMutex);