mirror of https://github.com/ArduPilot/ardupilot
AP_Logger: remove superfluous linefeed from panic strings
panic adds this within the HAL layer.
This commit is contained in:
parent
7fe183ba0f
commit
074798fb88
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue