add missing dot
EIVE/eive-obsw/pipeline/pr-develop This commit looks good Details

This commit is contained in:
Robin Müller 2022-12-16 13:26:20 +01:00
parent b6522c9fb3
commit bbf0def3ff
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}