From cbf61a105fb076dc7fa6049dd3a1ad3075bd8cf3 Mon Sep 17 00:00:00 2001 From: "John M. Penn" Date: Wed, 3 Jun 2015 19:32:23 -0500 Subject: [PATCH] Fix #64: Fixed the call to register_group_with_mm in DRHDF5 constructor. --- trick_source/sim_services/DataRecord/src/DRHDF5.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trick_source/sim_services/DataRecord/src/DRHDF5.cpp b/trick_source/sim_services/DataRecord/src/DRHDF5.cpp index d9544f1b..8598d9b5 100644 --- a/trick_source/sim_services/DataRecord/src/DRHDF5.cpp +++ b/trick_source/sim_services/DataRecord/src/DRHDF5.cpp @@ -15,7 +15,7 @@ PROGRAMMERS: #include "sim_services/Message/include/message_proto.h" Trick::DRHDF5::DRHDF5( std::string in_name ) : Trick::DataRecordGroup(in_name) { - register_group_with_mm(this, "Trick::HDF5") ; + register_group_with_mm(this, "Trick::DRHDF5") ; } int Trick::DRHDF5::format_specific_header( std::fstream & out_stream ) {