Skip to content

Commit 1cbd172

Browse files
committed
Fix brackets around FreeRTOS_printf
1 parent eae097b commit 1cbd172

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/tcpip/FreeRTOS_IP_wrapper.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct FlagLockState ipThreadLockState;
2121

2222
void ip_thread_start(void)
2323
{
24-
FreeRTOS_printf("ip_thread_start\n");
24+
FreeRTOS_printf(("ip_thread_start\n"));
2525
threadEntryGuard = 1;
2626
futex_wake(&threadEntryGuard, 1);
2727
}
@@ -31,7 +31,7 @@ void __cheri_compartment("TCPIP") ip_thread_entry(void)
3131
FreeRTOS_printf(("ip_thread_entry\n"));
3232
while (threadEntryGuard == 0)
3333
{
34-
FreeRTOS_printf("Sleeping until the IP task is supposed to start\n");
34+
FreeRTOS_printf(("Sleeping until the IP task is supposed to start\n"));
3535
futex_wait(&threadEntryGuard, 0);
3636
}
3737
xIPTaskHandle = thread_id_get();

0 commit comments

Comments
 (0)