fix review comment

This commit is contained in:
mi-hol 2023-06-17 21:01:28 +02:00 committed by rusefillc
parent d0f7a9b2d8
commit 41aef2ff5b
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ static void runCanGpioTest() {
static void writeSimulatorTune() {
FILE *ptr = fopen(SIMULATOR_TUNE_BIN_FILE_NAME, "wb");
if (ptr == nullptr) {
printf("ERROR creating file: [%s]", SIMULATOR_TUNE_BIN_FILE_NAME);
printf("/nPlease check folder exists and is writeable.");
printf("ERROR creating file: [%s]\n", SIMULATOR_TUNE_BIN_FILE_NAME);
printf("Please check folder exists and is writeable.");
return;
}
fwrite(&persistentState.persistentConfiguration, 1, sizeof(persistentState.persistentConfiguration), ptr);