AP_Logger: remove superfluous linefeed from panic strings

panic adds this within the HAL layer.
This commit is contained in:
Peter Barker 2024-12-13 20:15:44 +11:00 committed by Peter Barker
parent 7fe183ba0f
commit 074798fb88
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ void AP_Logger_Backend::validate_WritePrioritisedBlock(const void *pBuffer,
} else {
strncpy(name, "?NM?", ARRAY_SIZE(name));
}
AP_HAL::panic("Size mismatch for %u (%s) (expected=%u got=%u)\n",
AP_HAL::panic("Size mismatch for %u (%s) (expected=%u got=%u)",
type, name, type_len, size);
}
}