From 6eb1dfe2b1af9bac4e3aa77e803d29c6b59e61ad Mon Sep 17 00:00:00 2001 From: Dave Marco Date: Fri, 31 Jan 2025 16:38:47 +0000 Subject: [PATCH] small changes --- components/core/src/clp/streaming_archive/ArchiveMetadata.hpp | 2 +- components/core/src/clp/streaming_archive/Constants.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/core/src/clp/streaming_archive/ArchiveMetadata.hpp b/components/core/src/clp/streaming_archive/ArchiveMetadata.hpp index 1a1edc894..4a4769d4e 100644 --- a/components/core/src/clp/streaming_archive/ArchiveMetadata.hpp +++ b/components/core/src/clp/streaming_archive/ArchiveMetadata.hpp @@ -90,7 +90,7 @@ class ArchiveMetadata { private: // Variables - archive_format_version_t m_archive_format_version{cArchiveFormatVersion}; + archive_format_version_t m_archive_format_version{version::cPublicVersion}; std::string m_creator_id; uint16_t m_creator_id_len{0}; uint64_t m_creation_idx{0}; diff --git a/components/core/src/clp/streaming_archive/Constants.hpp b/components/core/src/clp/streaming_archive/Constants.hpp index ca43fb431..1f6f40d0f 100644 --- a/components/core/src/clp/streaming_archive/Constants.hpp +++ b/components/core/src/clp/streaming_archive/Constants.hpp @@ -31,7 +31,7 @@ namespace version { // | --------------- | ---------------- | // | a.b.c | x.y.z | // -// Private branch with version x.y.z incompatible with any public version. +// Private branch with version x.y.z incompatible with any public version // // | Public version | Private version | // | --------------- | ---------------- |