Skip to content

Commit 8abfd25

Browse files
committed
Fix code formatting
1 parent e038703 commit 8abfd25

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

src/displayapp/screens/SystemInfo.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,7 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
205205
xPortGetFreeHeapSize(),
206206
xPortGetMinimumEverFreeHeapSize(),
207207
mallocFailedCount,
208-
stackOverflowCount
209-
);
208+
stackOverflowCount);
210209
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
211210
return std::make_unique<Screens::Label>(2, 5, label);
212211
}

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void vApplicationMallocFailedHook() {
152152
mallocFailedCount++;
153153
}
154154

155-
void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char */*pcTaskName*/) {
155+
void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char* /*pcTaskName*/) {
156156
stackOverflowCount++;
157157
}
158158
}

src/recoveryLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ void vApplicationMallocFailedHook() {
146146
mallocFailedCount++;
147147
}
148148

149-
void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char */*pcTaskName*/) {
149+
void vApplicationStackOverflowHook(TaskHandle_t /*xTask*/, char* /*pcTaskName*/) {
150150
stackOverflowCount++;
151151
}
152152
}

0 commit comments

Comments
 (0)