Skip to content

Commit cb7d911

Browse files
authored
Merge pull request simonjwright#37 from reznikmm/fix-so-hook
Fix a function profile to match defined in task.h in FreeRTOSv10.4.1
2 parents 0e90c9e + d51c99c commit cb7d911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/vApplicationStackOverflowHook.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <task.h>
2626

2727
void vApplicationStackOverflowHook(TaskHandle_t xTask,
28-
signed char *pcTaskName) {
28+
char *pcTaskName) {
2929
// Endless loop (for checking via debugger)
3030
for (;;);
3131
}

0 commit comments

Comments
 (0)