From bbf0def3ff9c7b07d6030a6db5cbeb937a075ce2 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 16 Dec 2022 13:26:20 +0100 Subject: [PATCH] add missing dot --- mission/tmtc/TmStore.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mission/tmtc/TmStore.cpp b/mission/tmtc/TmStore.cpp index 4a0813b0..07fddcf0 100644 --- a/mission/tmtc/TmStore.cpp +++ b/mission/tmtc/TmStore.cpp @@ -72,7 +72,8 @@ ReturnValue_t TmStore::storePacket(PusTmReader& reader) { uint8_t appendedCounter = 1; path rolloverName; while (true) { - rolloverName = path(mostRecentFile.value().string() + std::to_string(appendedCounter)); + rolloverName = + path(mostRecentFile.value().string() + "." + std::to_string(appendedCounter)); if (not exists(rolloverName)) { break; }