From 3da8c781b9935fca0d902dc06f1e9a0f6bbe9336 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sat, 24 Jun 2023 14:35:44 +0200 Subject: [PATCH] afmt and bump patch --- CMakeLists.txt | 2 +- mission/tmtc/PersistentTmStore.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea835f89..4e60fae9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.13) set(OBSW_VERSION_MAJOR 3) set(OBSW_VERSION_MINOR 3) -set(OBSW_VERSION_REVISION 0) +set(OBSW_VERSION_REVISION 1) # set(CMAKE_VERBOSE TRUE) diff --git a/mission/tmtc/PersistentTmStore.cpp b/mission/tmtc/PersistentTmStore.cpp index b264b1c8..08a7ea45 100644 --- a/mission/tmtc/PersistentTmStore.cpp +++ b/mission/tmtc/PersistentTmStore.cpp @@ -268,7 +268,7 @@ ReturnValue_t PersistentTmStore::getNextDumpPacket(PusTmReader& reader, bool& fi // restore the file dump, but for now do not trust the file. std::error_code e; std::filesystem::remove(dumpParams.dirEntry.path().c_str(), e); - if(dumpParams.dirEntry.path() == activeFile) { + if (dumpParams.dirEntry.path() == activeFile) { activeFile == std::nullopt; assignAndOrCreateMostRecentFile(); }